diff options
Diffstat (limited to 'doc/idetools.rst')
-rw-r--r-- | doc/idetools.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/idetools.rst b/doc/idetools.rst index e83bfe935..ac3b92947 100644 --- a/doc/idetools.rst +++ b/doc/idetools.rst @@ -69,7 +69,7 @@ Or:: pass in the same value as **proj.nim**. ``DIRTY_FILE`` - The **FILE** paramater is enough for static analysis, but IDEs + The **FILE** parameter is enough for static analysis, but IDEs tend to have *unsaved buffers* where the user may still be in the middle of typing a line. In such situations the IDE can save the current contents to a temporary file and then use the @@ -210,7 +210,7 @@ tab characters (``\t``). The values of each column are: def for definition, ``sug`` for suggestion, etc). 2. Type of the symbol. This can be ``skProc``, ``skLet``, and just about any of the enums defined in the module ``compiler/ast.nim``. -3. Full qualitifed path of the symbol. If you are querying a symbol +3. Full qualified path of the symbol. If you are querying a symbol defined in the ``proj.nim`` file, this would have the form ``proj.symbolName``. 4. Type/signature. For variables and enums this will contain the |