From 10c7781b900ddf4737983b81b25b6af1643b88e4 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 22 Apr 2014 21:54:10 -0400 Subject: [PATCH] fix off-by-one error (closes #21330) --- Doc/howto/unicode.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index 10dde016c3..297e87e091 100644 --- a/Doc/howto/unicode.rst +++ b/Doc/howto/unicode.rst @@ -49,7 +49,7 @@ another and managed to catch on. 255 characters aren't very many. For example, you can't fit both the accented characters used in Western Europe and the Cyrillic alphabet used for Russian -into the 128-255 range because there are more than 127 such characters. +into the 128-255 range because there are more than 128 such characters. You could write files using different codes (all your Russian files in a coding system called KOI8, all your French files in a different coding system called -- 2.50.1