Skip to content

Commit 5963c30

Browse files
github-actionsMiraddo
authored andcommitted
updating DIRECTORY.md
1 parent 46e0651 commit 5963c30

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

DIRECTORY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
3333
* [Binary Tree](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/binary_tree.go)
3434
* [Btree](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/btree.go)
3535
* [Node](https://github.com/TheAlgorithms/Go/blob/master/data_structures/binary_tree/node.go)
36-
* Dynamic-Array
36+
* Dynamic Array
3737
* [Dynamic Array](https://github.com/TheAlgorithms/Go/blob/master/data_structures/dynamic_array/dynamic_array.go)
38+
* [Dynamic Array Test](https://github.com/TheAlgorithms/Go/blob/master/data_structures/dynamic_array/dynamic_array_test.go)
3839
* Hashmap
3940
* [Hashmap](https://github.com/TheAlgorithms/Go/blob/master/data_structures/hashmap/hashmap.go)
4041
* [Hashmap Test](https://github.com/TheAlgorithms/Go/blob/master/data_structures/hashmap/hashmap_test.go)

data_structures/dynamic_array/dynamic_array.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// description: A dynamic array is quite similar to a regular array, but its size is modifiable during program runtime.
33
// details: for more details check out those links below here:
44
// geeks for geeks article : https://www.geeksforgeeks.org/how-do-dynamic-arrays-work/
5-
// We can mention that Dynamic Array is like Slice for more detail about golang slice check this articles :
5+
// We can mention that Dynamic Array is like Slice for more detail about `Go` Slices check those articles :
66
// https://blog.golang.org/slices-intro
77
// https://blog.golang.org/slices
88
// authors [Wesllhey Holanda](https://github.com/wesllhey), [Milad](https://github.com/miraddo)

0 commit comments

Comments
 (0)