1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00

LibGUI: Use consistent naming scheme in INILexer

This commit is contained in:
Maciej 2021-12-30 13:43:45 +01:00 committed by Andreas Kling
parent 18d489faec
commit 1f7e363b74
3 changed files with 3 additions and 3 deletions

View file

@ -95,7 +95,7 @@ Vector<IniToken> IniLexer::lex()
begin_token();
while (peek() && !(peek() == ']' || peek() == '\n'))
consume();
commit_token(IniToken::Type::section);
commit_token(IniToken::Type::Section);
// ] Token
if (peek() && peek() == ']') {