We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deae79c commit d89bf25Copy full SHA for d89bf25
Linked List/LinkedList.swift
@@ -67,7 +67,7 @@ public final class LinkedList<T> {
67
/// - Returns: LinkedListNode
68
public func node(at index: Int) -> Node {
69
assert(head != nil, "List is empty")
70
- assert(index >= 0, "index must be greater than 0")
+ assert(index >= 0, "index must be greater or equal to 0")
71
72
if index == 0 {
73
return head!
0 commit comments