From 5b3b3fd3ed4372866730ae857e8c09d6e5d1167d Mon Sep 17 00:00:00 2001 From: Will Stamper Date: Sun, 8 Jun 2014 13:30:44 -0500 Subject: spelling fixes #827 --- test/unit/formatc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/unit/formatc.lua') diff --git a/test/unit/formatc.lua b/test/unit/formatc.lua index 64e651e8da..e63ff369f2 100644 --- a/test/unit/formatc.lua +++ b/test/unit/formatc.lua @@ -36,7 +36,7 @@ local tokens = P { "tokens"; -- Single line comment line_comment = Ct(P"//" * C((1 - V"newline")^0) * Cc"comment_line"), - -- Single platform independant line break which increments line number + -- Single platform independent line break which increments line number newline = (P"\r\n" + P"\n\r" + S"\r\n") * (Cp() * Carg(1)) / function(pos, state) state.line = state.line + 1 state.line_start = pos -- cgit