mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 23:07:35 +00:00
LibCpp: Fix "NumricLiteral" => "NumericLiteral" typo
This commit is contained in:
parent
402483ec1f
commit
fbf796cd9f
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
Add a link
Reference in a new issue