1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 01:34:19 +02:00

[c/en] Fix spell error, make spacing in comment consistent (#5357)

This commit is contained in:
nullzeta
2025-08-08 21:41:12 +03:00
committed by GitHub
parent e54606c9c7
commit 2b324b5688

2
c.md
View File

@@ -572,7 +572,7 @@ int add_two_ints(int x1, int x2)
/* /*
Functions are call by value. When a function is called, the arguments passed to Functions are call by value. When a function is called, the arguments passed to
the function are copies of the original arguments (except arrays). Anything you the function are copies of the original arguments (except arrays). Anything you
do to the arguments in the function do not change the value of the original do to the arguments in the function does not change the value of the original
argument where the function was called. argument where the function was called.
Use pointers if you need to edit the original argument values (arrays are always Use pointers if you need to edit the original argument values (arrays are always