diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-07-17 15:49:42 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-07-17 15:49:42 +0200 |
commit | 1aa34353177aaa63ff1f89b66b4b1673e5ff94ab (patch) | |
tree | 83d9ff7df4b4244315d6a9ee45422449474ad40e | |
parent | f2b6efb7dcffd0a41543ee755329aa5748887b42 (diff) | |
download | Nim-1aa34353177aaa63ff1f89b66b4b1673e5ff94ab.tar.gz |
manual.rst: fixes a typo
-rw-r--r-- | doc/manual.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index 4ab680326..7298b02a3 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -253,7 +253,7 @@ the exact spelling of an identifier. The exception with respect to the first letter allows common code like ``var foo: Foo`` to be parsed unambiguously. Historically, Nim was a fully `style-insensitive`:idx: language. This meant that -it was not case-sensitive and underscores were ignored and there was no even a +it was not case-sensitive and underscores were ignored and there was not even a distinction between ``foo`` and ``Foo``. |