diff options
author | Linus Groh <mail@linusgroh.de> | 2022-05-29 11:50:10 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-29 15:22:00 +0200 |
commit | 173dcfb7cb13fac29d06bfef0130a0469cd4ee27 (patch) | |
tree | 1622300c30db0e7e3ba42a07d23fc43a46d68ca2 /Userland/Applications/Spreadsheet | |
parent | f377951178dcc29e0a0b776f20576f76c86bc666 (diff) | |
download | serenity-173dcfb7cb13fac29d06bfef0130a0469cd4ee27.zip |
Everywhere: Fix a bunch of typos
Diffstat (limited to 'Userland/Applications/Spreadsheet')
-rw-r--r-- | Userland/Applications/Spreadsheet/SpreadsheetView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Spreadsheet/SpreadsheetView.cpp b/Userland/Applications/Spreadsheet/SpreadsheetView.cpp index 24620bf469..8205b4dfa7 100644 --- a/Userland/Applications/Spreadsheet/SpreadsheetView.cpp +++ b/Userland/Applications/Spreadsheet/SpreadsheetView.cpp @@ -194,7 +194,7 @@ void InfinitelyScrollableTableView::mousedown_event(GUI::MouseEvent& event) { // Override the mouse event so that the the cell that is 'clicked' is not // the one right beneath the cursor but instead the one that is referred to - // when m_is_hovering_cut_zone as it can be the case that the user is targetting + // when m_is_hovering_cut_zone as it can be the case that the user is targeting // a cell yet be outside of its bounding box due to the select_padding. if (m_is_hovering_cut_zone || m_is_hovering_extend_zone) { if (m_is_hovering_cut_zone) |