diff options
author | Erik Johansson Andersson <ephja@yandex.com> | 2016-02-05 19:11:43 +0100 |
---|---|---|
committer | Erik Johansson Andersson <ephja@yandex.com> | 2016-02-05 19:11:43 +0100 |
commit | f8d98700ac48423f399def1dbb2b4acca8b5c1fe (patch) | |
tree | abad731e6c40cef7e62e676aa43d818181c82f34 /lib/packages/docutils/rstgen.nim | |
parent | ac1e7a245093bb28a1a366f1e169ab50e6660c94 (diff) | |
download | Nim-f8d98700ac48423f399def1dbb2b4acca8b5c1fe.tar.gz |
nimrod -> nim
Diffstat (limited to 'lib/packages/docutils/rstgen.nim')
-rw-r--r-- | lib/packages/docutils/rstgen.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/packages/docutils/rstgen.nim b/lib/packages/docutils/rstgen.nim index 22d944597..4554ee502 100644 --- a/lib/packages/docutils/rstgen.nim +++ b/lib/packages/docutils/rstgen.nim @@ -802,7 +802,7 @@ proc parseCodeBlockField(d: PDoc, n: PRstNode, params: var CodeBlockParams) = if parseInt(n.getFieldValue, number) > 0: params.startLine = number of "file": - # The ``file`` option is a Nimrod extension to the official spec, it acts + # The ``file`` option is a Nim extension to the official spec, it acts # like it would for other directives like ``raw`` or ``cvs-table``. This # field is dealt with in ``rst.nim`` which replaces the existing block with # the referenced file, so we only need to ignore it here to avoid incorrect @@ -871,7 +871,7 @@ proc renderCodeBlock(d: PDoc, n: PRstNode, result: var string) = ## second the code block itself. The code block can use syntax highlighting, ## which depends on the directive argument specified by the rst input, and ## may also come from the parser through the internal ``default-language`` - ## option to differentiate between a plain code block and nimrod's code block + ## option to differentiate between a plain code block and Nim's code block ## extension. assert n.kind == rnCodeBlock if n.sons[2] == nil: return |