diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 54eaf903..1e46bb05 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -131,7 +131,7 @@ It is not necessary to wrap `Terms` parsers with `SkipWhitespace()` as they alre ### `Optional()` usage -Use the `Optional()` combinator to make a parser optional. If will always return an instance of `Option` regardless of whether the parser matches or not. Use `HasValue` to check if the parser was successful. Or use `OrSome()` to provide a default value when the parser does not match. +Use the `Optional()` combinator to make a parser optional. It will always return an instance of `Option` regardless of whether the parser matches or not. Use `HasValue` to check if the parser was successful. Or use `OrSome()` to provide a default value when the parser does not match. ```c# // Parse an integer or return -1 if not present