diff --git a/doc/manual/pragmas.txt b/doc/manual/pragmas.txt index 2a276c2e7f..af955a3e09 100644 --- a/doc/manual/pragmas.txt +++ b/doc/manual/pragmas.txt @@ -1018,12 +1018,12 @@ the -d/--define option at compile time. The implementation currently provides the following possible options (various others may be added later). -=============== ============================================ -pragma description -=============== ============================================ -intdefine Reads in a build-time define as an integer -strdefine Reads in a build-time define as a string -=============== ============================================ +================= ============================================ +pragma description +================= ============================================ +`intdefine`:idx: Reads in a build-time define as an integer +`strdefine`:idx: Reads in a build-time define as a string +================= ============================================ .. code-block:: nim const FooBar {.intdefine.}: int = 5 diff --git a/lib/pure/os.nim b/lib/pure/os.nim index 92e2958204..6bf776a442 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -1185,7 +1185,7 @@ proc createHardlink*(src, dest: string) = proc parseCmdLine*(c: string): seq[string] {. noSideEffect, rtl, extern: "nos$1".} = - ## Splits a command line into several components; + ## Splits a `command line`:idx: into several components; ## This proc is only occasionally useful, better use the `parseopt` module. ## ## On Windows, it uses the following parsing rules