From 2ea964f35b6a126ed79507ef9945909fece8ec66 Mon Sep 17 00:00:00 2001 From: Karol Stasiak Date: Wed, 28 Mar 2018 19:47:44 +0200 Subject: [PATCH] Small documentation fix --- docs/abi/variable-storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/abi/variable-storage.md b/docs/abi/variable-storage.md index ab80da1a..15017986 100644 --- a/docs/abi/variable-storage.md +++ b/docs/abi/variable-storage.md @@ -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,