diff --git a/Pygments-issues.md b/Pygments-issues.md index 21b6d16..2ac2397 100644 --- a/Pygments-issues.md +++ b/Pygments-issues.md @@ -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.