From ba7647531b2fbcc6e91dfc5898e15eb0bc0f178b Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Mon, 4 May 2015 22:13:14 +0800 Subject: [PATCH] Fix incorrect doxygen escapes --- doc/pointer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pointer.md b/doc/pointer.md index d4d1cf2..1d75080 100644 --- a/doc/pointer.md +++ b/doc/pointer.md @@ -196,7 +196,7 @@ String Representation | URI Fragment Representation | Pointer Tokens (UTF-8) `"/m~0n"` | `"#/m~0n"` | `{"m~n"}` `"/ "` | `"#/%20"` | `{" "}` `"/\0"` | `"#/%00"` | `{"\0"}` -`"/\xE2\x82\xAC"` | `"#/%E2%82%AC"` | `{"\xE2\x82\xAC"}` +`"/€"` | `"#/%E2%82%AC"` | `{"€"}` RapidJSON fully support URI fragment representation. It automatically detects the pound sign during parsing.