@@ -267,10 +267,10 @@ <h2 id="terminology"><span class="secno">3 </span>Terminology</h2>
267267
268268 < h3 id ="common-serializing-idioms "> < span class ="secno "> 3.1 </ span > Common Serializing Idioms</ h3 >
269269
270- < p > To < dfn id ="serialize -a-character "> serialize a character</ dfn > means to create a string of
270+ < p > To < dfn id ="escape -a-character "> escape a character</ dfn > means to create a string of
271271 "< code > \</ code > " (U+005C), followed by the character.</ p >
272272
273- < p > To < dfn id ="serialize -a-character-as-code-point "> serialize a character as code point</ dfn > means to create a
273+ < p > To < dfn id ="escape -a-character-as-code-point "> escape a character as code point</ dfn > means to create a
274274 string of "< code > \</ code > " (U+005C), followed by the Unicode code point as
275275 the smallest possible number of hexadecimal digits in the range 0-9 a-f
276276 (U+0030 to U+0039 and U+0061 to U+0066) to represent the code point in
@@ -282,23 +282,23 @@ <h3 id="common-serializing-idioms"><span class="secno">3.1 </span>Common Seriali
282282 < ul >
283283 < li > If the character is in the range U+0000 to U+001F or U+007F to
284284 U+009F, the character
285- < a href ="#serialize -a-character-as-code-point " title ="serialize a character as code point "> escaped as code point</ a > .</ li >
285+ < a href ="#escape -a-character-as-code-point " title ="escape a character as code point "> escaped as code point</ a > .</ li >
286286 < li > If the character is the first character and is in the range 0-9
287287 (U+0030 to U+0039), the character
288- < a href ="#serialize -a-character-as-code-point " title ="serialize a character as code point "> escaped as code point</ a > .</ li >
288+ < a href ="#escape -a-character-as-code-point " title ="escape a character as code point "> escaped as code point</ a > .</ li >
289289 < li > If the character is the second character and is in the range 0-9
290290 (U+0030 to U+0039) and the first character is a "< code > -</ code > "
291291 (U+002D), the character
292- < a href ="#serialize -a-character-as-code-point " title ="serialize a character as code point "> escaped as code point</ a > .</ li >
292+ < a href ="#escape -a-character-as-code-point " title ="escape a character as code point "> escaped as code point</ a > .</ li >
293293 < li > If the character is the second character and is "< code > -</ code > "
294294 (U+002D) and the first character is "< code > -</ code > " too, the
295- < a href ="#serialize -a-character " title ="serialize a character "> escaped</ a > character.</ li >
295+ < a href ="#escape -a-character " title ="escape a character "> escaped</ a > character.</ li >
296296 < li > If the character is not handled by one of the above rules and is
297297 greater than or equal to U+0080, is "< code > -</ code > " (U+002D) or
298298 "< code > _</ code > " (U+005F), or is in one of the ranges 0-9 (U+0030 to
299299 U+0039), A-Z (U+0041 to U+005A), or a-z (U+0061 to U+007A), the character
300300 itself.</ li >
301- < li > Otherwise, the < a href ="#serialize -a-character " title ="serialize a character "> escaped</ a >
301+ < li > Otherwise, the < a href ="#escape -a-character " title ="escape a character "> escaped</ a >
302302 character.</ li >
303303 </ ul >
304304
@@ -310,9 +310,9 @@ <h3 id="common-serializing-idioms"><span class="secno">3.1 </span>Common Seriali
310310 < ul >
311311 < li > If the character is in the range U+0000 to U+001F or U+007F to
312312 U+009F, the character
313- < a href ="#serialize -a-character-as-code-point " title ="serialize a character as code point "> escaped as code point</ a > .</ li >
313+ < a href ="#escape -a-character-as-code-point " title ="escape a character as code point "> escaped as code point</ a > .</ li >
314314 < li > If the character is '< code > "</ code > ' (U+0022) or '< code > \</ code > '
315- (U+005C), the < a href ="#serialize -a-character " title ="serialize a character "> escaped</ a > character.</ li >
315+ (U+005C), the < a href ="#escape -a-character " title ="escape a character "> escaped</ a > character.</ li >
316316 < li > Otherwise, the character itself.</ li >
317317 </ ul >
318318
0 commit comments