Files
Nim/doc
ee7 629b22e3d5 styleCheck: Fix error for sugar and std/with (#16176)
With this commit, we no longer see an error if we pass
`--styleCheck:error` when compiling a file that contains `import sugar`
or `import std/with`.

The problem was that those modules (and only those modules) import
`std/private/underscored_calls`, which contained a styleCheck issue:
its spelling of `nnkArgList` didn't match the `nnkArglist` spelling in
`macros.nim`.

This commit fixes the issue by renaming `nnkArgList` to `nnkArglist`
repo-wide. The other way around would be a breaking change for code that
used `nnkArglist` and `--styleCheck:error`.

Fixes: #16174
2020-12-02 20:48:16 +01:00
..
2014-08-28 22:36:14 +02:00
2018-11-14 08:27:48 +01:00
2020-10-28 17:56:56 +01:00
2020-06-28 19:17:18 +02:00
2020-11-14 18:51:05 +08:00
2020-10-20 10:51:50 +02:00
2019-10-22 17:59:12 -07:00
2016-10-24 12:20:51 +02:00
2020-09-21 12:37:14 +02:00
2019-10-22 17:59:12 -07:00
2020-10-20 10:51:50 +02:00
2020-11-20 03:31:06 -08:00

============================
Nim's documenation system
============================

This folder contains Nim's documentation. The documentation
is written in a format called *reStructuredText*, a markup language that reads
like ASCII and can be converted to HTML automatically!