LibCpp: Fix "NumricLiteral" => "NumericLiteral" typo
This commit is contained in:
parent
402483ec1f
commit
fbf796cd9f
Notes:
sideshowbarker
2024-07-18 17:44:54 +09:00
Author: https://github.com/itamar8910 Commit: https://github.com/SerenityOS/serenity/commit/fbf796cd9f8 Pull-request: https://github.com/SerenityOS/serenity/pull/7261
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue