diff options
author | Itamar <itamar8910@gmail.com> | 2021-05-19 22:35:51 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-19 23:19:07 +0200 |
commit | fbf796cd9f8934b3cdcdbb398dc78b61a6e830c1 (patch) | |
tree | 8fe5b3f9a28e7babf96ce197f9d5276b1dc07c0e /Userland/Libraries/LibCpp | |
parent | 402483ec1f07446f071cc2200e0bd29831f59663 (diff) | |
download | serenity-fbf796cd9f8934b3cdcdbb398dc78b61a6e830c1.zip |
LibCpp: Fix "NumricLiteral" => "NumericLiteral" typo
Diffstat (limited to 'Userland/Libraries/LibCpp')
-rw-r--r-- | Userland/Libraries/LibCpp/AST.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCpp/AST.h b/Userland/Libraries/LibCpp/AST.h index a70900072e..bd77a2a343 100644 --- a/Userland/Libraries/LibCpp/AST.h +++ b/Userland/Libraries/LibCpp/AST.h @@ -348,7 +348,7 @@ public: class NumericLiteral : public Expression { public: virtual ~NumericLiteral() override = default; - virtual const char* class_name() const override { return "NumricLiteral"; } + virtual const char* class_name() const override { return "NumericLiteral"; } virtual void dump(FILE* = stdout, size_t indent = 0) const override; NumericLiteral(ASTNode* parent, Optional<Position> start, Optional<Position> end, const String& filename, StringView value) |