mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-23 19:00:59 +00:00
LibJS: Fix typo in MarkedVector::end()
This commit is contained in:
parent
5c344f4aee
commit
c175cea32d
Notes:
sideshowbarker
2024-07-17 22:40:22 +09:00
Author: https://github.com/awesomekling
Commit: c175cea32d
1 changed files with 2 additions and 2 deletions
|
@ -63,8 +63,8 @@ public:
|
|||
auto begin() { return span().begin(); }
|
||||
auto begin() const { return span().begin(); }
|
||||
|
||||
auto end() { return span().begin(); }
|
||||
auto end() const { return span().begin(); }
|
||||
auto end() { return span().end(); }
|
||||
auto end() const { return span().end(); }
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue