Skip to content

Commit 685b87a

Browse files
committed
missing semicolon
1 parent c6640d3 commit 685b87a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

reference/cctype/tolower.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ tolower('$') = $
4747
```cpp
4848
int tolower(int ch) {
4949
if (isupper(ch)) {
50-
ch ^= 32
50+
ch ^= 32;
5151
}
5252
return ch;
5353
}

0 commit comments

Comments
 (0)