From fdaad85e09af510deaf030d1c61057b9664f1cfa Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Wed, 4 Nov 2020 01:29:18 -0700 Subject: fix escape sequences oops --- language/scanning.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/scanning.rst b/language/scanning.rst index 8ec1e49..bdde234 100644 --- a/language/scanning.rst +++ b/language/scanning.rst @@ -90,8 +90,8 @@ Scanning Or a sequence of characters matching one of the following regular expressions: * ``\\x[0-9a-fA-F]{2}``, denoting the numeric value of the given two hexadecimal digits - * ``\\x[0-9a-fA-F]{4}``, denoting the numeric value of the given four hexadecimal digits - * ``\\x[0-9a-fA-F]{8}``, denoting the numeric value of the given eight hexadecimal digits + * ``\\u[0-9a-fA-F]{4}``, denoting the numeric value of the given four hexadecimal digits + * ``\\U[0-9a-fA-F]{8}``, denoting the numeric value of the given eight hexadecimal digits string literal A pair of double quotes ``"`` surrounding a sequence whose elements are either single characters or escape sequences. -- cgit v1.2.3