From 788feadac56d851522044d72bcc481cc89fa5e84 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Wed, 16 Aug 2023 05:29:17 -0700 Subject: [PATCH] improved documentation --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 69b7e7e..de88a2d 100644 --- a/README.md +++ b/README.md @@ -117,10 +117,7 @@ This is done as described in the following table: | # of bytes | # bits for code point | 1st code point | last code point | byte 1 | byte 2 | byte 3 | byte 4 | |------------|-----------------------|----------------|------------------|----------|----------|----------|----------| | 1 | 7 | U+000000 | U+00007F | 0xxxxxxx | | | | -|------------|-----------------------|----------------|------------------|----------|----------|----------|----------| | 2 | 11 | U+000080 | U+0007FF | 110xxxxx | 10xxxxxx | | | -|------------|-----------------------|----------------|------------------|----------|----------|----------|----------| | 3 | 16 | U+000800 | U+00FFFF | 1110xxxx | 10xxxxxx | 10xxxxxx | | -|------------|-----------------------|----------------|------------------|----------|----------|----------|----------| | 4 | 21 | U+010000 | U+10FFFF | 11110xxx | 10xxxxxx | 10xxxxxx | 10xxxxxx | ```