Updated Pygments issues (markdown)
This commit is contained in:
parent
429328ab49
commit
33f75d952d
|
@ -16,17 +16,17 @@ The `` `[]` `` should only be red.
|
||||||
|
|
||||||
```nimrod
|
```nimrod
|
||||||
proc suspend(p: Process) =
|
proc suspend(p: Process) =
|
||||||
if kill(p.id, SIGSTOP) != 0'i32: raiseOsError(osLastError())
|
if kill(p.id, SIGSTOP) != 0'i32: raiseOsError(osLastError())
|
||||||
```
|
```
|
||||||
|
|
||||||
```nimrod
|
```nimrod
|
||||||
proc terminate(p: Process) =
|
proc terminate(p: Process) =
|
||||||
if kill(p.id, SIGTERM) != 0'i32:
|
if kill(p.id, SIGTERM) != 0'i32:
|
||||||
raiseOsError(osLastError())
|
raiseOsError(osLastError())
|
||||||
|
|
||||||
proc kill(p: Process) =
|
proc kill(p: Process) =
|
||||||
if kill(p.id, SIGKILL) != 0'i32:
|
if kill(p.id, SIGKILL) != 0'i32:
|
||||||
raiseOsError(osLastError())
|
raiseOsError(osLastError())
|
||||||
```
|
```
|
||||||
|
|
||||||
`'i32` and after should not be red.
|
`'i32` and after should not be red.
|
||||||
|
|
Loading…
Reference in New Issue