diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-07 12:56:50 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-07 13:53:14 +0200 |
commit | 6ad427993a64c846c93ecc1fd3bf3f6d6be9cd3d (patch) | |
tree | bf364b00ad62291a34426cc8a820a18b7b8c1aaa /Userland/Libraries/LibJS/Runtime/IteratorOperations.cpp | |
parent | 55b0b06897b7160b5fbc18ff9186a2242bbdf318 (diff) | |
download | serenity-6ad427993a64c846c93ecc1fd3bf3f6d6be9cd3d.zip |
Everywhere: Behaviour => Behavior
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/IteratorOperations.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/IteratorOperations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/IteratorOperations.cpp b/Userland/Libraries/LibJS/Runtime/IteratorOperations.cpp index 4a702daedd..afdf4d2f13 100644 --- a/Userland/Libraries/LibJS/Runtime/IteratorOperations.cpp +++ b/Userland/Libraries/LibJS/Runtime/IteratorOperations.cpp @@ -115,7 +115,7 @@ void iterator_close(Object& iterator) auto& vm = iterator.vm(); auto& global_object = iterator.global_object(); - // Emulates `completion` behaviour + // Emulates `completion` behavior auto* completion_exception = vm.exception(); vm.clear_exception(); auto unwind_until = vm.unwind_until(); |