diff --git a/doc/backends.txt b/doc/backends.txt index b78397913b..c7b60da26c 100644 --- a/doc/backends.txt +++ b/doc/backends.txt @@ -338,7 +338,7 @@ in the ``nimcache`` directory. The naming of these files follows the pattern ``nimblePackageName_`` + ``nimSource``: * Filenames for modules imported from `nimble packages - `_ will end up with + `_ will end up with ``nimblePackageName_module.c``. For example, if you import the ``argument_parser`` module from the same name nimble package you will end up with a ``argument_parser_argument_parser.c`` file diff --git a/lib/pure/xmltree.nim b/lib/pure/xmltree.nim index b84da95869..3c789d841c 100644 --- a/lib/pure/xmltree.nim +++ b/lib/pure/xmltree.nim @@ -280,11 +280,11 @@ macro `<>`*(x: expr): expr {.immediate.} = ## Constructor macro for XML. Example usage: ## ## .. code-block:: nim - ## <>a(href="http://nim-code.org", newText("Nim rules.")) + ## <>a(href="http://nim-lang.org", newText("Nim rules.")) ## ## Produces an XML tree for:: ## - ## Nim rules. + ## Nim rules. ## let x = callsite() result = xmlConstructor(x) @@ -343,5 +343,5 @@ proc findAll*(n: XmlNode, tag: string): seq[XmlNode] = findAll(n, tag, result) when isMainModule: - assert """Nim rules.""" == - $(<>a(href="http://nim-code.org", newText("Nim rules."))) + assert """Nim rules.""" == + $(<>a(href="http://nim-lang.org", newText("Nim rules."))) diff --git a/tests/manyloc/argument_parser/argument_parser.nim b/tests/manyloc/argument_parser/argument_parser.nim index fec00dbf8f..af671cd852 100644 --- a/tests/manyloc/argument_parser/argument_parser.nim +++ b/tests/manyloc/argument_parser/argument_parser.nim @@ -1,7 +1,7 @@ ## Command line parsing module for Nimrod. ## -## `Nim `_ provides the `parseopt module -## `_ to parse options from the +## `Nim `_ provides the `parseopt module +## `_ to parse options from the ## commandline. This module tries to provide functionality to prevent you from ## writing commandline parsing and let you concentrate on providing the best ## possible experience for your users. diff --git a/web/nim.ini b/web/nim.ini index 6ae13260a6..0190416b21 100644 --- a/web/nim.ini +++ b/web/nim.ini @@ -8,7 +8,7 @@ Authors: "Andreas Rumpf and contributors" # Underscores are replaced with a space. # Everything after ; is the ID Community: "community.html;link_forum" -Aporia_IDE: "https://github.com/nim-code/Aporia;link_aporia" +Aporia_IDE: "https://github.com/nim-lang/Aporia;link_aporia" Github_Repo: "http://github.com/Araq/Nim;link_github" diff --git a/web/question.txt b/web/question.txt index 1427fb5279..1fb501e2cb 100644 --- a/web/question.txt +++ b/web/question.txt @@ -104,11 +104,11 @@ General What about editor support? -------------------------- - - Nim IDE: https://github.com/nim-code/Aporia - - Emacs: https://github.com/Tass/nimrod-mode + - Nim IDE: https://github.com/nim-lang/Aporia + - Emacs: https://github.com/Tass/nim-mode - Vim: https://github.com/zah/nimrod.vim/ - Scite: Included - - Gedit: The `Aporia .lang file `_ + - Gedit: The `Aporia .lang file `_ - jEdit: https://github.com/exhu/nimrod-misc/tree/master/jedit - TextMate: Available in bundle installer (`Repository `_)