From f92f5710192d048cc4d6a993fd33882c6f17a00a Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Thu, 26 Oct 2023 23:31:45 +0200 Subject: [PATCH] Documentation: SerenityOS' => SerenityOS's in Patterns.md This is the only instance of `*OS's` in the repo that does not use `s` after the apostrophe. Generally, the saxon genitive for singular nouns is always written as `'s` even if they end in `s`. --- Documentation/Patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Patterns.md b/Documentation/Patterns.md index 98463376901..a28319e25df 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.