summaryrefslogtreecommitdiff
path: root/dquote_static.c
diff options
context:
space:
mode:
authorHugo van der Sanden <hv@crypt.org>2015-03-18 21:58:43 +0000
committerHugo van der Sanden <hv@crypt.org>2015-03-18 21:58:43 +0000
commit7a4ca5b4c6cbf0022494a8f350fe000abb4b3034 (patch)
tree98c327eaad912d4a7fa785e8f703606cee9e8edb /dquote_static.c
parent1ce7b77de80f2fbcbecf3cf6343440c19201bdf0 (diff)
downloadperl-7a4ca5b4c6cbf0022494a8f350fe000abb4b3034.tar.gz
doc typo
Diffstat (limited to 'dquote_static.c')
-rw-r--r--dquote_static.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dquote_static.c b/dquote_static.c
index 401bf478eb..801240bcf6 100644
--- a/dquote_static.c
+++ b/dquote_static.c
@@ -90,7 +90,7 @@ S_grok_bslash_o(pTHX_ char **s, UV *uv, const char** error_msg,
* This returns FALSE if there is an error which the caller need not recover
* from; otherwise TRUE. In either case the caller should look at *len [???].
* It guarantees that the returned codepoint, *uv, when expressed as
- * utf8 bytes, would fit within the skipped "\x{...}" bytes.
+ * utf8 bytes, would fit within the skipped "\o{...}" bytes.
* On input:
* s is the address of a pointer to a NULL terminated string that begins
* with 'o', and the previous character was a backslash. At exit, *s
@@ -183,7 +183,7 @@ S_grok_bslash_o(pTHX_ char **s, UV *uv, const char** error_msg,
/* Return past the '}' */
*s = e + 1;
- /* guarantee replacing "\x{...}" with utf8 bytes fits within
+ /* guarantee replacing "\o{...}" with utf8 bytes fits within
* existing space */
assert(OFFUNISKIP(*uv) < *s - start);