Skip to content

Commit f9b6a2f

Browse files
committed
becuase -> because
1 parent 70bae5b commit f9b6a2f

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)