Skip to content

Commit

Permalink
fix(conform-to): fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
c0nstexpr committed Jan 24, 2024
1 parent 08176f9 commit 1d87526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/stdsharp/compare/compare.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace stdsharp
return c == std::partial_ordering::unordered;
}

constexpr bool comform_to(const std::partial_ordering l, decltype(l) r) noexcept
constexpr bool conform_to(const std::partial_ordering l, decltype(l) r) noexcept
{
return is_eq(l) || l == r;
}
Expand Down

0 comments on commit 1d87526

Please sign in to comment.