diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-14 13:40:47 +0100 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-02-14 13:40:47 +0100 |
commit | b8a13bb98fc88742e6b3a7cba26374d342af2e92 (patch) | |
tree | fc2b3b656ad80bf96e8362b8b3f3a4aa36550025 | |
parent | 5c60b4881d4a3970a04c754616c6771a27affe8a (diff) | |
parent | 2a9fb70f6d62e1cf3a0bc08fa6dc89bb53310624 (diff) |
Merge pull request #528 from weakish/patch-8
c: typo
-rw-r--r-- | c.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c.html.markdown b/c.html.markdown index d7c682ad..0190125b 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -569,7 +569,7 @@ typedef void (*my_fnp_type)(char *); '\b' // backspace character '\0' // null character. Usually put at end of strings in C lang. // hello\n\0. \0 used by convention to mark end of string. -'\\' // backspace +'\\' // backslash '\?' // question mark '\'' // single quote '\"' // double quote |