diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2020-06-28 20:17:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 19:17:18 +0200 |
commit | 79367685601f4c90f6c478ce45651bffd9222c39 (patch) | |
tree | 9347b6f8354061330c9c297c13f47c9b26da294f /doc/idetools.rst | |
parent | 4f70180a58ae46fcf313aed001242f8aa1252b1a (diff) | |
download | Nim-79367685601f4c90f6c478ce45651bffd9222c39.tar.gz |
Fix some typos (#14843)
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 |