diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-08-02 17:11:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-02 17:11:22 +0200 |
commit | 14085a70afb5c8c2a167453d1fb176caa8ebca9b (patch) | |
tree | d676951b9b475a59b7314a162cdad53b9a9e5c0f | |
parent | 4d5c0027e6d9e7a70c79cd441043357fb270bff0 (diff) | |
parent | 268ba0ba0072c59e86c4a45554687b3b1e7092c3 (diff) | |
download | Nim-14085a70afb5c8c2a167453d1fb176caa8ebca9b.tar.gz |
Merge pull request #4549 from miere43/fix-links
Fix several broken links in docs and readme
-rw-r--r-- | doc/manual/type_rel.txt | 2 | ||||
-rw-r--r-- | lib/system/nimscript.nim | 2 | ||||
-rw-r--r-- | readme.md | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/type_rel.txt b/doc/manual/type_rel.txt index b9b83919c..5b68f73aa 100644 --- a/doc/manual/type_rel.txt +++ b/doc/manual/type_rel.txt @@ -313,7 +313,7 @@ matches better than just ``T`` then. Automatic dereferencing ----------------------- -If the `experimental mode <experimental pragma>`_ is active and no other match +If the `experimental mode <#pragmas-experimental-pragma>`_ is active and no other match is found, the first argument ``a`` is dereferenced automatically if it's a pointer type and overloading resolution is tried with ``a[]`` instead. diff --git a/lib/system/nimscript.nim b/lib/system/nimscript.nim index cc96bcba8..ad2b154d4 100644 --- a/lib/system/nimscript.nim +++ b/lib/system/nimscript.nim @@ -234,7 +234,7 @@ proc cd*(dir: string) {.raises: [OSError].} = ## ## The change is permanent for the rest of the execution, since this is just ## a shortcut for `os.setCurrentDir() - ## <http://nim-lang.org/os.html#setCurrentDir,string>`_ . Use the `withDir() + ## <http://nim-lang.org/docs/os.html#setCurrentDir,string>`_ . Use the `withDir() ## <#withDir>`_ template if you want to perform a temporary change only. setCurrentDir(dir) checkOsError() diff --git a/readme.md b/readme.md index e8afb1a1b..f56b054d6 100644 --- a/readme.md +++ b/readme.md @@ -49,7 +49,7 @@ The above steps can be performed on Windows in a similar fashion, the instead of ``build.sh``. The ``koch`` tool is the Nim build tool, more ``koch`` related options are -documented in [doc/koch.txt](doc/koch.txt). +documented in [doc/koch.rst](doc/koch.rst). ## Nimble [Nimble](https://github.com/nim-lang/nimble) is Nim's package manager. For the |