Skip to content

Commit 3349f89

Browse files
committed
fixed typos
Signed-off-by: René <snooz@posteo.de>
1 parent 91c3482 commit 3349f89

File tree

4 files changed

+83
-83
lines changed

4 files changed

+83
-83
lines changed

website/docs/chapter-02/05_keyword_interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ All of them can be called positionally or by name.
7070

7171
![Run Process Keyword Documentation](/img/Run_Process_Docs.png)
7272

73-
This keyword has one Mandatory Arguments `command` which can be called positionally or by name.
73+
This keyword has one Mandatory Argument `command` which can be called positionally or by name.
7474
The latter two arguments are optional.
7575

7676
The argument `arguments` is a :term[Variable Number of Positional Arguments] and can only be set by position.

website/src/components/Glossary/GlossaryTable.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import styles from './GlossaryTable.module.css';
88

99
export type GlossaryItem = {
1010
term: string;
11-
aliasses: string[];
11+
aliases: string[];
1212
abbreviation: string;
1313
definition: string;
1414
};
@@ -56,13 +56,13 @@ const GlossaryTable: React.FC = () => {
5656
isAlias: false,
5757
slug,
5858
targetSlug: slug,
59-
aliases: item.aliasses || [],
59+
aliases: item.aliases || [],
6060
};
6161
});
6262

6363
const aliasEntries: DisplayEntry[] = glossaryItems.flatMap((item) => {
6464
const canonicalSlug = slugify(item.term);
65-
return (item.aliasses || [])
65+
return (item.aliases || [])
6666
.filter((alias) => !termSet.has(alias))
6767
.map((alias) => ({
6868
term: alias,

website/src/remark/remark-term-directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function remarkTermDirective() {
2626
(glossary || []).forEach((entry) => {
2727
const key = normalizeKey(entry.term);
2828
glossaryByKey.set(key, entry);
29-
(entry.aliasses || []).forEach((alias) => {
29+
(entry.aliases || []).forEach((alias) => {
3030
glossaryByKey.set(normalizeKey(alias), entry);
3131
});
3232
});

0 commit comments

Comments
 (0)