mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-29 10:43:57 +00:00
fixed article duplication typos (#16216)
This commit is contained in:
@@ -112,7 +112,7 @@ proc initRstGenerator*(g: var RstGenerator, target: OutputTarget,
|
||||
## it helps to prettify the generated index if no title is found.
|
||||
##
|
||||
## The ``RstParseOptions``, ``FindFileHandler`` and ``MsgHandler`` types
|
||||
## are defined in the the `packages/docutils/rst module <rst.html>`_.
|
||||
## are defined in the `packages/docutils/rst module <rst.html>`_.
|
||||
## ``options`` selects the behaviour of the rst parser.
|
||||
##
|
||||
## ``findFile`` is a proc used by the rst ``include`` directive among others.
|
||||
|
||||
@@ -1101,7 +1101,7 @@ macro mapLiterals*(constructor, op: untyped;
|
||||
iterator items*[T](xs: iterator: T): T =
|
||||
## iterates over each element yielded by a closure iterator. This may
|
||||
## not seem particularly useful on its own, but this allows closure
|
||||
## iterators to be used by the the mapIt, filterIt, allIt, anyIt, etc.
|
||||
## iterators to be used by the mapIt, filterIt, allIt, anyIt, etc.
|
||||
## templates.
|
||||
for x in xs():
|
||||
yield x
|
||||
|
||||
@@ -622,7 +622,7 @@ when not defined(js): # C
|
||||
## Note: Not available for JS backend.
|
||||
proc gamma*(x: float32): float32 {.importc: "tgammaf", header: "<math.h>".}
|
||||
proc gamma*(x: float64): float64 {.importc: "tgamma", header: "<math.h>".}
|
||||
## Computes the the `gamma function <https://en.wikipedia.org/wiki/Gamma_function>`_ for ``x``.
|
||||
## Computes the `gamma function <https://en.wikipedia.org/wiki/Gamma_function>`_ for ``x``.
|
||||
##
|
||||
## Note: Not available for JS backend.
|
||||
##
|
||||
|
||||
@@ -346,7 +346,7 @@ proc write*[T](s: Stream, x: T) =
|
||||
writeData(s, unsafeAddr(x), sizeof(x))
|
||||
|
||||
proc write*(s: Stream, x: string) =
|
||||
## Writes the string `x` to the the stream `s`. No length field or
|
||||
## Writes the string `x` to the stream `s`. No length field or
|
||||
## terminating zero is written.
|
||||
runnableExamples:
|
||||
var strm = newStringStream("")
|
||||
|
||||
Reference in New Issue
Block a user