Updated Pygments issues (markdown)

This commit is contained in:
Li Jie 2015-06-29 22:10:58 +08:00
parent 429328ab49
commit 33f75d952d
1 changed files with 7 additions and 7 deletions

View File

@ -16,17 +16,17 @@ The `` `[]` `` should only be red.
```nimrod
proc suspend(p: Process) =
if kill(p.id, SIGSTOP) != 0'i32: raiseOsError(osLastError())
if kill(p.id, SIGSTOP) != 0'i32: raiseOsError(osLastError())
```
```nimrod
proc terminate(p: Process) =
if kill(p.id, SIGTERM) != 0'i32:
raiseOsError(osLastError())
proc terminate(p: Process) =
if kill(p.id, SIGTERM) != 0'i32:
raiseOsError(osLastError())
proc kill(p: Process) =
if kill(p.id, SIGKILL) != 0'i32:
raiseOsError(osLastError())
proc kill(p: Process) =
if kill(p.id, SIGKILL) != 0'i32:
raiseOsError(osLastError())
```
`'i32` and after should not be red.