mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibGUI: Use consistent naming scheme in INILexer
This commit is contained in:
parent
18d489faec
commit
1f7e363b74
Notes:
sideshowbarker
2024-07-17 21:57:35 +09:00
Author: https://github.com/sppmacd
Commit: 1f7e363b74
Pull-request: https://github.com/SerenityOS/serenity/pull/11502
3 changed files with 3 additions and 3 deletions
|
@ -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() == ']') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue