book: replace comma with a more suitable character

This commit is contained in:
Tshepang Lekhonkhobe 2015-09-03 21:05:35 +02:00
parent 1661947014
commit 8b2b949830

View file

@ -38,7 +38,7 @@ local variables and some other information. This is called a stack frame,
for the purpose of this tutorial, were going to ignore the extra information
and just consider the local variables were allocating. So in this case, when
`main()` is run, well allocate a single 32-bit integer for our stack frame.
This is automatically handled for you, as you can see, we didnt have to write
This is automatically handled for you, as you can see; we didnt have to write
any special Rust code or anything.
When the function is over, its stack frame gets deallocated. This happens