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`.
This commit is contained in:
Emanuele Torre 2023-10-26 23:31:45 +02:00 committed by Andrew Kaster
parent 6ed069ea8d
commit f92f571019

View file

@ -93,7 +93,7 @@ ErrorOr<void> insert_one_to_onehundred(Vector<int>& 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.