Skip to content

Commit d89bf25

Browse files
committed
Fix wrong description
Signed-off-by: bbvch13531 <[email protected]>
1 parent deae79c commit d89bf25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Linked List/LinkedList.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public final class LinkedList<T> {
6767
/// - Returns: LinkedListNode
6868
public func node(at index: Int) -> Node {
6969
assert(head != nil, "List is empty")
70-
assert(index >= 0, "index must be greater than 0")
70+
assert(index >= 0, "index must be greater or equal to 0")
7171

7272
if index == 0 {
7373
return head!

0 commit comments

Comments
 (0)