File tree Expand file tree Collapse file tree 4 files changed +83
-83
lines changed
Expand file tree Collapse file tree 4 files changed +83
-83
lines changed Original file line number Diff line number Diff 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.
7474The latter two arguments are optional.
7575
7676The argument ` arguments ` is a : term [ Variable Number of Positional Arguments] and can only be set by position.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import styles from './GlossaryTable.module.css';
88
99export 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 ,
Original file line number Diff line number Diff 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 } ) ;
You can’t perform that action at this time.
0 commit comments