diff options
author | Nico Weber <thakis@chromium.org> | 2023-04-12 13:32:21 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-04-12 19:37:35 +0200 |
commit | f56b8976220bec13c880fbba8bc3aff67cff361b (patch) | |
tree | 67d0b74522a173c936b464f7482c2eb6c1d57de2 /AK/FixedPoint.h | |
parent | 3d101320211f804b8e14e0e3a80a88677e41c2f1 (diff) | |
download | serenity-f56b8976220bec13c880fbba8bc3aff67cff361b.zip |
Everywhere: Fix a few typos
Some even user-visible!
Diffstat (limited to 'AK/FixedPoint.h')
-rw-r--r-- | AK/FixedPoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/FixedPoint.h b/AK/FixedPoint.h index 2453c54246..0deeeee7f1 100644 --- a/AK/FixedPoint.h +++ b/AK/FixedPoint.h @@ -335,7 +335,7 @@ public: bool operator<(This const& other) const { return raw() < other.raw(); } bool operator<=(This const& other) const { return raw() <= other.raw(); } - // FIXE: There are probably better ways to do these + // FIXME: There are probably better ways to do these template<Integral I> bool operator==(I other) const { |