summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibRegex/RegexByteCode.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-01-22 17:42:36 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-22 18:41:29 +0100
commit421587c15ccdef4764f45a281ffe1d01bd027ed6 (patch)
treed4dfcf9c99f0c16be5d87d410f39542cf49d7415 /Userland/Libraries/LibRegex/RegexByteCode.h
parent7ad31651bd6a00d7b20d429b88bcfd8d707a6c3e (diff)
downloadserenity-421587c15ccdef4764f45a281ffe1d01bd027ed6.zip
Everywhere: Fix typos
Diffstat (limited to 'Userland/Libraries/LibRegex/RegexByteCode.h')
-rw-r--r--Userland/Libraries/LibRegex/RegexByteCode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibRegex/RegexByteCode.h b/Userland/Libraries/LibRegex/RegexByteCode.h
index 940ed14a1c..f9a69c6d73 100644
--- a/Userland/Libraries/LibRegex/RegexByteCode.h
+++ b/Userland/Libraries/LibRegex/RegexByteCode.h
@@ -286,7 +286,7 @@ public:
empend((ByteCodeValueType)2); // Fail two forks
empend((ByteCodeValueType)OpCodeId::Save);
empend((ByteCodeValueType)OpCodeId::ForkJump);
- empend((ByteCodeValueType) - (body_length + 5)); // JUMP to lavel _L
+ empend((ByteCodeValueType) - (body_length + 5)); // JUMP to label _L
empend((ByteCodeValueType)OpCodeId::Restore);
return;
}
@@ -321,7 +321,7 @@ public:
empend((ByteCodeValueType)2); // Fail two forks
empend((ByteCodeValueType)OpCodeId::Save);
empend((ByteCodeValueType)OpCodeId::ForkJump);
- empend((ByteCodeValueType) - (body_length + 7)); // JUMP to lavel _L
+ empend((ByteCodeValueType) - (body_length + 7)); // JUMP to label _L
empend((ByteCodeValueType)OpCodeId::Restore);
return;
}