Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After a period, a new sentence should start with a capital letter; i.e., here reads like the start of a new sentence but is lowercase. Consider rewriting as a single sentence (e.g., using a semicolon) or capitalizing it (I.e.,) to fix the grammar.

Suggested 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

Copilot uses AI. Check for mistakes.
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
Expand Down
Loading