Skip to content

Commit

Permalink
Merge pull request #1417 from jbampton/fix-spelling
Browse files Browse the repository at this point in the history
docs: fix spelling
  • Loading branch information
zspitzer authored May 31, 2024
2 parents a76364b + b3ea445 commit 6102482
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Name of the object (path) within the bucket of your object to ckeck
Name of the object (path) within the bucket of your object to check
4 changes: 2 additions & 2 deletions docs/03.reference/05.objects/query/reduce/_examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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() );
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 6102482

Please sign in to comment.