Skip to content

Commit 1423670

Browse files
RasmusWLp0
andauthored
Fix typo ql-design-patterns.md
Co-authored-by: Pavel Avgustinov <54942558+p0@users.noreply.github.com>
1 parent c04e964 commit 1423670

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/ql-design-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ abstract class MySpecialExpr extends Expr {
2020
class ConcreteSubclass extends MySpecialExpr { ... }
2121
```
2222

23-
While this allows users of the library to add new types of `MySpecialExpr` (like, in this case, `ConcreteSubclass), there is no way to override the implementations of `memberPredicate` of all extensions at once.
23+
While this allows users of the library to add new types of `MySpecialExpr` (like, in this case, `ConcreteSubclass`), there is no way to override the implementations of `memberPredicate` of all extensions at once.
2424

2525
Applying the `::Range` pattern yields the following:
2626

0 commit comments

Comments
 (0)