-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
Documentation GenerationRelated to documentation generation (but not content).Related to documentation generation (but not content).Regression
Description
Example
Conventions
-----------
1. New stdlib modules should go under `Nim/lib/std/`. The rationale is to require
users to import via `import std/foo` instead of `import foo`, which would cause
potential conflicts with nimble packages. Note that this still applies for new modules
in existing logical directories, e.g.:
use `lib/std/collections/foo.nim`, not `lib/pure/collections/foo.nim`.
2. New module names should prefer plural form whenever possible, e.g.:
`std/sums.nim` instead of `std/sum.nim`. In particular, this reduces chances of conflicts
between module name and the symbols it defines. Furthermore, module names should
use `snake_case` and not use capital letters, which cause issues when going
from an OS without case sensitivity to an OS with it.Current Output
the bug is that there is a new paragraph after The rationale is to require and after possible, e.g.:

Expected Output
Additional Information
juancarlospaco
Metadata
Metadata
Assignees
Labels
Documentation GenerationRelated to documentation generation (but not content).Related to documentation generation (but not content).Regression
