1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-02 03:29:30 +00:00

Small documentation fix

This commit is contained in:
Karol Stasiak 2018-03-28 19:47:44 +02:00
parent b93340e7d1
commit 2ea964f35b

View File

@ -59,7 +59,7 @@ Automatic variables defined with the `register` keyword will have the priority w
## Parameters
Automatic variables have lifetime starting with the beginning
Function parameters have lifetime starting with the beginning
of the function call to the function they're defined in
and ending when the function returns.
They reside in memory and can share their memory location with other parameters and automatic variables,