From 428759732961184b13a9c8003dc3f44ef3aea6f1 Mon Sep 17 00:00:00 2001 From: Peter Hinch Date: Sun, 23 Oct 2016 11:16:23 +0100 Subject: [PATCH] More typos fixed. Recovering from eye operation :) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6f7136a..99f40c7 100644 --- a/README.md +++ b/README.md @@ -22,15 +22,15 @@ very little RAM is used, yet the data may be accessed fast. It is intended that the resultant file be usable with a variety of display devices and drivers. These include: - 1. Drivers using the official ``framebuffer`` class. + 1. A driver for the official ``framebuffer`` class. 2. Drivers using ``bytearray`` instances as frame buffers. 3. Drivers for devices where the frame buffer is implemented in external hardware. # Limitations -Only the ASCII character set from chr(32) to chr(126) is supported. Kerning is -not supported. +Only the ASCII character set from ``chr(32)`` to ``chr(126)`` is supported. +Kerning is not supported. # Usage @@ -148,8 +148,8 @@ has the following outline definition (in practice the bytes objects are large): ```python import pyfont -_myfont = b'\x00\x00` -_myfont_index = b'\x00\x00\x23\x00\` +_myfont = b'\x00\x00' +_myfont_index = b'\x00\x00\x23\x00\' myfont = pyfont.PyFont(_myfont, _myfont_index, 24, 0, True, False) ```