Skip to content

Commit 4c7bc00

Browse files
Update searches/linear_search.nim
Co-authored-by: dlesnoff <54949944+dlesnoff@users.noreply.github.com>
1 parent e13d2d3 commit 4c7bc00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

searches/linear_search.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Linear Search
22
## =============
33
## Linear search is the simplest but least efficient searching algorithm
4-
## to search for an element in a data set.
4+
## to search for an element in an array.
55
## It examines each element until it finds a match,
66
## starting at the beginning of the data set toward the end.
77
## The search ends when the element is located or when the end of the array is reached.

0 commit comments

Comments
 (0)