diff --git a/thebookofcolors b/thebookofcolors index b32210a..c6d34a7 100755 --- a/thebookofcolors +++ b/thebookofcolors @@ -72,7 +72,7 @@ section_anatomy() { printf "\e[3m0x1B + [ + + \e[0m\n" newline printf "The CSI sequence we've gone over already. The easiest way to think about this is that the letter is the name of a function, and the semicolon-delimited numbers are the arguments to said function.\n" - printf "By this model of thinking about escape sequences like function calls means you would read \"\\e[0;1;34m\" as m(0, 1, 34), and \"\\e[A\" as A().\n" + printf "By this model of thinking about escape sequences like function calls means you would read \"\\\e[0;1;34m\" as m(0, 1, 34), and \"\\\e[A\" as A().\n" newline printf "The \"m\" function is the one we're interested in. This is the \"SGR\", or \"Select Graphics Rendition\", code, and it tells the terminal to activate color and other text effects, which is what we're interested in.\n"