add commas

This commit is contained in:
Paul Ebose
2026-02-27 03:38:59 +01:00
parent 3ecaa34271
commit 4aeb7b83b9
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
// var foo: u8 = 5; // foo is 5
// var bar: *u8 = &foo; // bar is a pointer
//
// What is a pointer? It's a reference to a value. In this example
// What is a pointer? It's a reference to a value. In this example,
// bar is a reference to the memory space that currently contains the
// value 5.
//