Skip to content

Commit 2f56338

Browse files
committed
lower case
1 parent fac8d0c commit 2f56338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/02.3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ Now we can change the value of `x` in the functions. Why do we use pointers? Wha
327327

328328
- Allows us to use more functions to operate on one variable.
329329
- Low cost by passing memory addresses (8 bytes), copy is not an efficient way, both in terms of time and space, to pass variables.
330-
- `Channel`, `slice` and `map` are reference types, so they use pointers when passing to functions by default. (Attention: If you need to change the length of `slice`, you have to pass pointers explicitly)
330+
- `channel`, `slice` and `map` are reference types, so they use pointers when passing to functions by default. (Attention: If you need to change the length of `slice`, you have to pass pointers explicitly)
331331

332332
### defer
333333

0 commit comments

Comments
 (0)