diff --git a/docs/03.reference/01.functions/s3exists/_arguments/objectName.md b/docs/03.reference/01.functions/s3exists/_arguments/objectName.md index 2b6d9bc49..2c8246adb 100644 --- a/docs/03.reference/01.functions/s3exists/_arguments/objectName.md +++ b/docs/03.reference/01.functions/s3exists/_arguments/objectName.md @@ -1 +1 @@ -Name of the object (path) within the bucket of your object to ckeck \ No newline at end of file +Name of the object (path) within the bucket of your object to check \ No newline at end of file diff --git a/docs/03.reference/05.objects/query/reduce/_examples.md b/docs/03.reference/05.objects/query/reduce/_examples.md index 21ef4adb6..4d171b5bc 100644 --- a/docs/03.reference/05.objects/query/reduce/_examples.md +++ b/docs/03.reference/05.objects/query/reduce/_examples.md @@ -18,7 +18,7 @@ | Jim | 1988-01-01 00:00:00 | 0 | */ - // intitialise age as a second argument + // initialise age as a second argument totalAge = people.reduce( function(age, row, rowNumber, recordset ){ return age + DateDiff( 'yyyy', recordset.dob, Now() ); },0); @@ -28,7 +28,7 @@ totalAge = 167 */ - // intitialise age in closure + // initialise age in closure totalAge = people.reduce( function(age=0, row, rowNumber, recordset ){ return age + DateDiff( 'yyyy', recordset.dob, Now() ); }); diff --git a/docs/04.guides/04.cookbooks/01.application-context-basic/page.md b/docs/04.guides/04.cookbooks/01.application-context-basic/page.md index f2c320c96..7123b97eb 100644 --- a/docs/04.guides/04.cookbooks/01.application-context-basic/page.md +++ b/docs/04.guides/04.cookbooks/01.application-context-basic/page.md @@ -446,7 +446,7 @@ component displayname="Application" output="false" hint="Handle the application" // REGEX // Defines the regular expression dialect to be used. // - modern: Modern type is the dialect used by Java itself. - // - classic CFML default, the classic CFML tradional type Perl5 dialect + // - classic CFML default, the classic CFML traditional type Perl5 dialect //////////////////////////////////////////////////////////////// // this.regex.type = "perl";