Skip to content

Commit a63ad18

Browse files
author
Steve Tibbett
committed
Fix name of algorithm
1 parent ad1d46d commit a63ad18

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)