Skip to content

Commit 70486a9

Browse files
gitryderronreiter
authored andcommitted
Fix grammatical error
1 parent 149c2a9 commit 70486a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/learn-c.org/en/Function arguments by reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Tutorial
22
--------
33

4-
Assumingly you're already know pointers and functions, so you are aware of that function arguments are passed by value, which means they are copied in and out of functions.
4+
Assumingly, you already know pointers and functions, so you are aware that function arguments are passed by value, which means they are copied in and out of functions.
55
But what if we pass pointers to values instead of the values themselves? This will enable us to give functions control over variables and structures of the parent functions, and not just a copy of them, thus directly reading and writing the original object.
66

77
Let's say we want to write a function which increments a number by one, called `addone`. This will not work:

0 commit comments

Comments
 (0)