Fixed spelling

This commit is contained in:
Vishal Sodani 2021-02-16 18:26:43 +05:30 committed by GitHub
parent f0c50bc8c6
commit d0400e3733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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