diff options
author | mjz19910 <matthias291999@gmail.com> | 2022-01-07 05:04:05 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-07 15:44:42 +0100 |
commit | 10ec98dd3852369834b6367da5615ec2a21846a3 (patch) | |
tree | abbff764b730536f3595cae937f7b8ca86b44e2e /Userland/Applications/Spreadsheet | |
parent | 168063819d009b34d43286c0367129592809a79d (diff) | |
download | serenity-10ec98dd3852369834b6367da5615ec2a21846a3.zip |
Everywhere: Fix spelling mistakes
Diffstat (limited to 'Userland/Applications/Spreadsheet')
-rw-r--r-- | Userland/Applications/Spreadsheet/JSIntegration.cpp | 2 | ||||
-rw-r--r-- | Userland/Applications/Spreadsheet/Readers/XSV.h | 2 | ||||
-rw-r--r-- | Userland/Applications/Spreadsheet/select_format_page.gml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/Spreadsheet/JSIntegration.cpp b/Userland/Applications/Spreadsheet/JSIntegration.cpp index 0015f6eff2..a14d4d7fd9 100644 --- a/Userland/Applications/Spreadsheet/JSIntegration.cpp +++ b/Userland/Applications/Spreadsheet/JSIntegration.cpp @@ -18,7 +18,7 @@ namespace Spreadsheet { Optional<FunctionAndArgumentIndex> get_function_and_argument_index(StringView source) { JS::Lexer lexer { source }; - // Track <identifier> <OpenParen>'s, and how many complete expressions are inside the parenthesised expression. + // Track <identifier> <OpenParen>'s, and how many complete expressions are inside the parenthesized expression. Vector<size_t> state; StringView last_name; Vector<StringView> names; diff --git a/Userland/Applications/Spreadsheet/Readers/XSV.h b/Userland/Applications/Spreadsheet/Readers/XSV.h index 25baaaa3d0..abd07117f5 100644 --- a/Userland/Applications/Spreadsheet/Readers/XSV.h +++ b/Userland/Applications/Spreadsheet/Readers/XSV.h @@ -44,7 +44,7 @@ struct ParserTraits { E(NonConformingColumnCount, "Header count does not match given column count") \ E(QuoteFailure, "Quoting failure") \ E(InternalError, "Internal error") \ - E(DataPastLogicalEnd, "Exrta data past the logical end of the rows") + E(DataPastLogicalEnd, "Extra data past the logical end of the rows") enum class ReadError { #define E(name, _) name, diff --git a/Userland/Applications/Spreadsheet/select_format_page.gml b/Userland/Applications/Spreadsheet/select_format_page.gml index 7010ce8e38..9e88191a99 100644 --- a/Userland/Applications/Spreadsheet/select_format_page.gml +++ b/Userland/Applications/Spreadsheet/select_format_page.gml @@ -7,7 +7,7 @@ @GUI::Label { text: "Please double-check the guessed file type\nor select the correct one below" - text_aliignment: "TopLeft" + text_alignment: "TopLeft" fixed_height: 32 } |