Steven Silvester 8 years ago
parent
commit
961a212d27
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorial/patterns.md

+ 1 - 1
tutorial/patterns.md

@@ -111,5 +111,5 @@ Prefer an `IIterator` for:
 - A return value where the value is based on an internal `Vector` but the value should not need to be accessed randomly.
 - A set of return values that can be computed lazily.
 
-Prefer a `ISequence` when:
+Prefer an `ISequence` when:
 - A return value or public attribute based on an internal `Vector` where the value may need to be accessed randomly.