Skip to content

Commit

Permalink
Fix typo in parse and validate documentation (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-kelemen committed Jun 14, 2023
1 parent 7c03082 commit 14467db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/content/reference/action/parse.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace lexy
constexpr bool is_success() const noexcept;
constexpr bool is_error() const noexcept;
constexpr bool is_recovered_error() const neoxcept;
constexpr bool is_recovered_error() const noexcept;
constexpr bool is_fatal_error() const noexcept;
//=== value ===//
Expand Down Expand Up @@ -66,7 +66,7 @@ constexpr explicit operator bool() const noexcept
constexpr bool is_success() const noexcept; <1>
constexpr bool is_error() const noexcept; <2>
constexpr bool is_recovered_error() const neoxcept; <3>
constexpr bool is_recovered_error() const noexcept; <3>
constexpr bool is_fatal_error() const noexcept; <4>
----
<1> Returns `true` if parsing succeeded without raising any errors, `false` otherwise.
Expand Down
4 changes: 2 additions & 2 deletions docs/content/reference/action/validate.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ namespace lexy
constexpr bool is_success() const noexcept;
constexpr bool is_error() const noexcept;
constexpr bool is_recovered_error() const neoxcept;
constexpr bool is_recovered_error() const noexcept;
constexpr bool is_fatal_error() const noexcept;
//=== error list ===//
Expand Down Expand Up @@ -92,7 +92,7 @@ constexpr explicit operator bool() const noexcept
constexpr bool is_success() const noexcept; <1>
constexpr bool is_error() const noexcept; <2>
constexpr bool is_recovered_error() const neoxcept; <3>
constexpr bool is_recovered_error() const noexcept; <3>
constexpr bool is_fatal_error() const noexcept; <4>
----
<1> Returns `true` if parsing succeeded without raising any errors, `false` otherwise.
Expand Down

0 comments on commit 14467db

Please sign in to comment.