Skip to content

Commit 1be25fa

Browse files
committed
Merge pull request kodecocodes#13 from fdstevex/master
Fix name of algorithm in readme
2 parents 1068934 + a63ad18 commit 1be25fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Linear Search/README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We start by comparing the first number in the array, `5` with the number we're l
1212

1313
### The code
1414

15-
Here is a simple implementation of insertion sort in Swift:
15+
Here is a simple implementation of linear search in Swift:
1616

1717
```swift
1818
func linearSearch<T: Equatable>(array: [T], _ object: T) -> Int? {

0 commit comments

Comments
 (0)