From 4c1177fd5d16593ddf2b18e30eb19182687b4d2e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Tue, 10 Mar 2015 17:21:23 -0400 Subject: [PATCH] lib/tileset: fix typos in doc MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/mnit/tileset.nit | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/mnit/tileset.nit b/lib/mnit/tileset.nit index 285ee55..c9dbb16 100644 --- a/lib/mnit/tileset.nit +++ b/lib/mnit/tileset.nit @@ -17,7 +17,7 @@ module tileset import mnit_display -# Efficienly retrieve tiles in a big image +# Efficiently retrieve tiles in a big image class TileSet # The image containing the tileset var image: Image @@ -63,20 +63,20 @@ end class TileSetFont super TileSet - # Each caracter in the image + # Each character in the image # in left->right, then top->bottom order # Use space (' ') for holes in the tileset var chars: String # Additional space to insert horizontally between characters - # A negave value will display tile overlaped + # A negative value will display tile overlapped var hspace: Numeric = 0.0 is writable # Additional space to insert vertically between characters - # A negave value will display tile overlaped + # A negative value will display tile overlapped var vspace: Numeric = 0.0 is writable - # The glyph (tile) associated to the caracter `c` according to `chars` + # The glyph (tile) associated to the character `c` according to `chars` # Returns null if `c` is not in `chars` fun char(c: Char): nullable Image do -- 1.7.9.5