aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-02-06 16:18:55 +0100
committerantirez <antirez@gmail.com>2014-02-06 16:18:55 +0100
commitcaf6947cab09997456dc0ef764fe3b6251641382 (patch)
treef3c332836eb79c8afd8cbff9169f4a1f878fb011
parentd3bf159cf8c44655e63009b50d96e68dbf929706 (diff)
downloadsds-caf6947cab09997456dc0ef764fe3b6251641382.tar.xz
README: fixed missing quote.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 161b87f..59be13c 100644
--- a/README.md
+++ b/README.md
@@ -461,7 +461,7 @@ This is the rules `sdscatrepr` uses for conversion:
* `\` and `"` are quoted with a backslash.
* It quotes special characters '\n', '\r', '\t', '\a' and '\b'.
-* All the other non printable characters not passing the `isprint` test are quoted in \x..` form, that is: backslash followed by `x` followed by two digit hex number representing the character byte value.
+* All the other non printable characters not passing the `isprint` test are quoted in `\x..` form, that is: backslash followed by `x` followed by two digit hex number representing the character byte value.
* The function always adds initial and final double quotes characters.
There is an SDS function that is able to perform the reverse conversion and is