Skip to content

Commit 1f970f8

Browse files
authored
Merge pull request kodecocodes#637 from ss18/fixed-typo
Fixed typo
2 parents 70bae5b + f9b6a2f commit 1f970f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Singly Linked List/SinglyLinkedList.playground/Contents.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ assert(l2.count == 8)
720720
assert(l2.contains(67) == true)
721721

722722

723-
//: Notice that becuase our implementation conforms to the Collection protocol, we can use a lot of methods already implemented for us in Swift's standard library, for example, contains, dropLast, etc.
723+
//: Notice that because our implementation conforms to the Collection protocol, we can use a lot of methods already implemented for us in Swift's standard library, for example, contains, dropLast, etc.
724724

725725
let l3 = l2.dropLast()
726726
assert(l3.count == 7)

0 commit comments

Comments
 (0)