diff --git a/lib/system.nim b/lib/system.nim index f96f97dd66..dae760ef82 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1465,8 +1465,8 @@ when defined(nimdoc): ## ## Note that this is a *runtime* call and using ``quit`` inside a macro won't ## have any compile time effect. If you need to stop the compiler inside a - ## macro, use the `error `_ or `fatal - ## `_ pragmas. + ## macro, use the `error `_ or `fatal + ## `_ pragmas. elif defined(genode): include genode/env @@ -2429,7 +2429,7 @@ iterator fieldPairs*[T: tuple|object](x: T): RootObj {. ## When you iterate over objects with different field types you have to use ## the compile time ``when`` instead of a runtime ``if`` to select the code ## you want to run for each type. To perform the comparison use the `is - ## operator `_. Example: + ## operator `_. Example: ## ## .. code-block:: Nim ##