summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJakukyo Friel <weakish@gmail.com>2014-02-14 20:34:23 +0800
committerJakukyo Friel <weakish@gmail.com>2014-02-14 20:34:23 +0800
commit2a9fb70f6d62e1cf3a0bc08fa6dc89bb53310624 (patch)
treefc2b3b656ad80bf96e8362b8b3f3a4aa36550025
parent5c60b4881d4a3970a04c754616c6771a27affe8a (diff)
c: typo
-rw-r--r--c.html.markdown2
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