Skip to content

Commit 6667713

Browse files
committed
reverse link
1 parent 2fe2548 commit 6667713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To provide a real-world analogy, consider an array of athletes preparing for a s
66

77
## Implementation
88

9-
In the Go programming language, (arrays)[https://go.dev/blog/slices] are considered values rather than pointers and represent the entirety of the array. Whenever an array is passed to a function, a copy is created, resulting in additional memory usage. To avoid this, it is possible to pass a pointer to an array, or use slices instead. The size of the array is constant and it must be known at compile time, and there is no need to use the built-in `make` function when defining arrays.
9+
In the Go programming language, [arrays](https://go.dev/blog/slices) are considered values rather than pointers and represent the entirety of the array. Whenever an array is passed to a function, a copy is created, resulting in additional memory usage. To avoid this, it is possible to pass a pointer to an array, or use slices instead. The size of the array is constant and it must be known at compile time, and there is no need to use the built-in `make` function when defining arrays.
1010

1111
```Go
1212
package main

0 commit comments

Comments
 (0)