]> Chaos Git - corbenik/ctrulib.git/commitdiff
Fixed a type-o
authorgudenau <gudenau@users.noreply.github.com>
Tue, 17 Feb 2015 00:47:40 +0000 (18:47 -0600)
committergudenau <gudenau@users.noreply.github.com>
Tue, 17 Feb 2015 00:47:40 +0000 (18:47 -0600)
examples/graphics/printing/hello-world/source/main.c

index c131d20692d9b1ffa21d02751c06e95693b69963..260b017247ba3d4936f3ed08ea805529ecd436d2 100644 (file)
@@ -23,7 +23,7 @@ int main(int argc, char **argv)
        consoleInit(GFX_TOP, NULL);
 
        //Move the cursor to row 15 and column 19 and then prints "Hello World!"
-       //To move the cursor you have tu print "\x1b[r;cH", where r and c are respectively
+       //To move the cursor you have to print "\x1b[r;cH", where r and c are respectively
        //the row and column where you want your cursor to move
        //The top screen has 30 rows and 50 columns
        //The bottom screen has 30 rows and 40 columns