diff options
author | antirez <antirez@gmail.com> | 2014-02-06 16:18:55 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-02-06 16:18:55 +0100 |
commit | caf6947cab09997456dc0ef764fe3b6251641382 (patch) | |
tree | f3c332836eb79c8afd8cbff9169f4a1f878fb011 | |
parent | d3bf159cf8c44655e63009b50d96e68dbf929706 (diff) | |
download | sds-caf6947cab09997456dc0ef764fe3b6251641382.tar.xz |
README: fixed missing quote.
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |