From 512873e56585860102e3130f2957b037f00da91b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Mon, 10 Jul 2017 13:56:04 -0400 Subject: [PATCH] lib: misc typos MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/a_star.nit | 2 +- lib/gamnit/camera_control_linux.nit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/a_star.nit b/lib/a_star.nit index cc0cba3..db80519 100644 --- a/lib/a_star.nit +++ b/lib/a_star.nit @@ -90,7 +90,7 @@ class Node # lifetime limited to evocation of `path_to` private var open: Bool = false - # Main functionnality, returns path from `self` to `dest` + # Main functionality, returns path from `self` to `dest` fun path_to(dest: N, max_cost: Int, context: PathContext): nullable AStarPath[N] do return path_to_alts(dest, max_cost, context, null) diff --git a/lib/gamnit/camera_control_linux.nit b/lib/gamnit/camera_control_linux.nit index 8c92e91..2aa5d48 100644 --- a/lib/gamnit/camera_control_linux.nit +++ b/lib/gamnit/camera_control_linux.nit @@ -23,7 +23,7 @@ redef class EulerCamera # Zoom factor, default at 1.2, higher means more reactive zoom effect var camera_zoom_mod = 1.2 is writable - # Scoll trigger button mask from SDL2 (1: left, 2: middle, 4: right) + # Scroll trigger button mask from SDL2 (1: left, 2: middle, 4: right) # # Set to 0 to deactivate the scrolling feature. var camera_pan_mask = 2 is writable -- 1.7.9.5