@@ -46,7 +46,7 @@ as a sequence of 32-bit unsigned integers. The building blocks of an encoding
4646are _code units_, and UTF-32 has the most direct mapping between code points
4747and code units.
4848
49- { width=400px }
49+ { width=400px }
5050
5151Any values greater than `0x10FFFF` are rejected by validators for being
5252outside the range of valid Unicode.
@@ -56,9 +56,9 @@ codespace used to top out at `0xFFFF`. Code points outside this range are
5656represented using _surrogates_, a reserved area in codespace which allows
5757combining the low 10 bits of two code units to form a single code point.
5858
59- { width=400px }
59+ { width=400px }
6060
61- { width=300px }
61+ { width=300px }
6262
6363UTF-16 is rendered invalid by improper use of surrogates: a high surrogate not
6464followed by a low surrogate or a low surrogate not preceded by a high
@@ -72,9 +72,9 @@ code unit is either a start byte, which describes how long the subsequence is
7272(two to four bytes long), or a continuation byte, which fills out the
7373subsequence with the remaining data.
7474
75- { width=750px }
75+ { width=750px }
7676
77- { width=400px }
77+ { width=400px }
7878
7979UTF-8 code unit sequences can be invalid for many reasons, such as a start
8080byte not followed by the correct number of continuation bytes, or a UTF-8
@@ -216,7 +216,7 @@ underlying view. `operator*` provides the current element of the buffer.
216216Below is an approximate block diagram of the iterator. Bold lines denote
217217actual data members of the iterator; dashed lines are just function calls.
218218
219- { width=500px }
219+ { width=500px }
220220
221221The `to_utf_view::@*iterator*@` is converting the string `Qϕ学𡪇`
222222from UTF-8 to UTF-16. The user has iterated the view to the first UTF-16 code
@@ -284,7 +284,7 @@ The table below compares the error handling behavior of the `to_utf16` and
284284"Substitution of Maximal Subparts" section of the Unicode standard:
285285[@SubstitutionExamples]
286286
287- { width=750px }
287+ { width=750px }
288288
289289## Code Unit Views
290290
0 commit comments