From a89927ef02ddc980780f75e4bdcf4b2bba0c1667 Mon Sep 17 00:00:00 2001 From: Audun Wilhelmsen Date: Sun, 4 May 2014 12:27:22 -0700 Subject: [PATCH] Formatting changes to the cheat-sheet --- Nimrod-for-C-programmers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Nimrod-for-C-programmers.md b/Nimrod-for-C-programmers.md index d351b75..416e107 100644 --- a/Nimrod-for-C-programmers.md +++ b/Nimrod-for-C-programmers.md @@ -151,9 +151,9 @@ let z = 2
 char* s = "Hello World.";
 char s0 = s[0]; // 'H'
-char *t = s; // Pointer to s
+char *t = s; // Ptr to s
 s[11] = '!';
-// s and t both "Hello World!"
+// s, t == "Hello World!"