diff options
author | technicallyagd <43739261+technicallyagd@users.noreply.github.com> | 2018-10-09 23:45:00 +0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-09 17:45:00 +0200 |
commit | 85187d4ba379b4c08f77feb032632aa47837016f (patch) | |
tree | 53e6c806353d09c4a3b9a75822e7310b3fec1e61 /doc | |
parent | 2a31f42d35121e12dfbef368ce9d5d1751aa1376 (diff) | |
download | Nim-85187d4ba379b4c08f77feb032632aa47837016f.tar.gz |
Fixes some minor typos in nimsuggest.rst (#9223)
* Fix Minor typo in nimsuggest.rst * Fixes two more typo in nimsuggest.rst
Diffstat (limited to 'doc')
-rw-r--r-- | doc/nimsuggest.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/nimsuggest.rst b/doc/nimsuggest.rst index 80e926dfc..0b6839b53 100644 --- a/doc/nimsuggest.rst +++ b/doc/nimsuggest.rst @@ -48,7 +48,7 @@ by default. Specifying the location of the query ------------------------------------ -Nimsuggest than waits for queries to process. A query consists of a +Nimsuggest then waits for queries to process. A query consists of a cryptic 3 letter "command" ``def`` or ``con`` or ``sug`` or ``use`` followed by a location. A query location consists of: @@ -59,7 +59,7 @@ a location. A query location consists of: ``dirtyfile.nim`` This is optional. - 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 @@ -143,7 +143,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. Fully 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 |