diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-08-30 11:26:09 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-09-01 13:02:53 +0200 |
commit | 0a90613288e4944cdae032ff3fea8fd0829a2e20 (patch) | |
tree | 955e61e0e528c1f31ab81cbf902c6044bb13d6ad | |
parent | 0cb90f3eaf482415662091a62b06aceb53d4b1f5 (diff) | |
download | Nim-0a90613288e4944cdae032ff3fea8fd0829a2e20.tar.gz |
nimsuggest: correct documentation
-rw-r--r-- | doc/nimsuggest.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/nimsuggest.rst b/doc/nimsuggest.rst index 2b52196b9..4da39b5d0 100644 --- a/doc/nimsuggest.rst +++ b/doc/nimsuggest.rst @@ -80,7 +80,7 @@ a location. A query location consists of: ``col`` An integer with the column you are going to query. For the - compiler columns start at **1**. + compiler columns start at **0**. Definitions @@ -160,7 +160,7 @@ tab characters (``\t``). The values of each column are: 6. Line where the symbol is located in the file. Lines start to count at **1**. 7. Column where the symbol is located in the file. Columns start - to count at **1**. + to count at **0**. 8. Docstring for the symbol if available or the empty string. To differentiate the docstring from end of answer, the docstring is always provided enclosed in double quotes, and |