diff --git a/Documentation/Patterns.md b/Documentation/Patterns.md index 9846337690..a28319e25d 100644 --- a/Documentation/Patterns.md +++ b/Documentation/Patterns.md @@ -93,7 +93,7 @@ ErrorOr insert_one_to_onehundred(Vector& vector) ## Fallible Constructors -The usual C++ constructors are incompatible with SerenityOS' method of handling errors, +The usual C++ constructors are incompatible with SerenityOS's method of handling errors, as potential errors are passed using the `ErrorOr` return type. As a replacement, classes that require fallible operations during their construction define a static function that is fallible instead.