From e96e4a1d0ac1c5b159710f3ff2214ae94c739c65 Mon Sep 17 00:00:00 2001 From: Prithvi Raj Date: Fri, 17 Apr 2026 15:51:32 +0000 Subject: [PATCH] Fix punctuation in i.e. abbreviation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 01/README.md: "i.e," → "i.e." (missing period after abbreviation) Co-Authored-By: Claude Sonnet 4.6 --- 01/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01/README.md b/01/README.md index 2ef686b..5e9261d 100644 --- a/01/README.md +++ b/01/README.md @@ -58,7 +58,7 @@ Under Linux you can disable ASLR, without using a debugger, in (at least) two w * ```volatile int counter = 0``` Volatile used to indicate to the compiler that a variable's value may change -unexpectedly. i.e, the compiler can't assume that the value of the variable +unexpectedly. i.e., the compiler can't assume that the value of the variable won't change if it is not written to. Volatile is needed to make sure that compiler doesn't do any optimisations such as storing the value of counter in any temporary variables. But still, we are trying to access the value of the