Skip to content

Commit

Permalink
Clean up: remove duplicate words; fix spelling and word case
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Jul 22, 2023
1 parent 1919f6d commit fd3cc8d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/00.home/homepage.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Lucee 5.4 is the [stable release](https://lucee.org/downloads.html) and is recom

[Lucee 6](https://dev.lucee.org/tag/lucee-6) is the next major release of Lucee, currently in [development](https://luceeserver.atlassian.net/jira/software/c/projects/LDEV/boards/10?sprint=58). See the [Lucee 6 category](https://dev.lucee.org/tag/lucee-6) on our developer forum.

Highlights include, reduced size, faster startup, single context mode, json based configuration and much more.
Highlights include, reduced size, faster startup, single context mode, JSON based configuration and much more.

## Lucee 5.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ The following masks can be used to format the full date and time and may not be
- full: equivalent to "dddd, mmmm d, yyyy h:nn:ss tt zz"
- ISO8601/ISO: equivalent to "yyyy-mm-dd'T'HH:nn:ssXXX"
- epoch: Total seconds of a given date (Example:1567517664) (added in Lucee 6.0.0.83)
- epochms: Total millseconds of a given date (Example:1567517664000) (added in Lucee 6.0.0.83)
- epochms: Total milliseconds of a given date (Example:1567517664000) (added in Lucee 6.0.0.83)
Original file line number Diff line number Diff line change
@@ -1 +1 @@
if true (default) and the called age throws an exception, that exception is clso thrown within the caller request. If false itis catched and only reported in he resulting struct.
if true (default) and the called page throws an exception, that exception is also thrown within the caller request. If false it is catched and only reported in the resulting struct.
2 changes: 1 addition & 1 deletion docs/03.reference/01.functions/markdowntohtml/_examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ markdownString="" &
"- Third item" & dNL &
"###### Some Blockquotes" & dNL &
"> This is some blockquoted text" & nl &
">> Blockquoted text with identation" & dNL;
">> Blockquoted text with indentation" & dNL;
echo( markdownToHtml( markdownString) );
```
2 changes: 1 addition & 1 deletion docs/03.reference/02.tags/interface/tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ Defines an interface that consists of a set of signatures for functions.

The interface does not include the full function definitions; instead, you implement the functions in a Component.

The interfaces defined using this tag can can be used to create a reusable application framework.
The interfaces defined using this tag can be used to create a reusable application framework.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ To build only the update .lco file:

#### Troubleshooting Build

If you are are getting errors trying to compile the code, you may need to flush your Maven cache. Running the following command to refresh your dependency cache:
If you are getting errors trying to compile the code, you may need to flush your Maven cache. Running the following command to refresh your dependency cache:

```
mvn dependency:purge-local-repository
Expand Down
2 changes: 1 addition & 1 deletion docs/04.guides/08.lucee-5/03.access-modifiers/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: public and private scope for component variables

Lucee already supports access modifiers for functions, but with Lucee 4 this was limited to functions,

Since Lucee 5, access modifiers are also supported for for variables.
Since Lucee 5, access modifiers are also supported for variables.

Access modifiers can be defined for all variables defined within the body of a component, for example:

Expand Down
2 changes: 1 addition & 1 deletion docs/04.guides/12.deploying-lucee-server-apps/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ You can pre warm a lucee installation, by setting the env var `LUCEE_ENABLE_WARM

You will see extensions, Lucee Admin and Lucee Docs, these simply install mappings to make them available. The admin is tightly coupled to the Lucee Version, so they aren't separately deployed

## AWS Lamdas / Serverless
## AWS Lambdas / Serverless

[Fuseless: Tools for running Serverless CFML Lambda Functions](https://fuseless.org/)
2 changes: 1 addition & 1 deletion docs/04.guides/13.Various/01.system-properties/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ This is because the data stored in this sort of variables or files may be access

Storing sensitive information e.g. hashed passwords, access-tokens, user names, database names, etc on OS or files has to be considered very carefully.

Also, make sure not to publish these files with sensitive data as as part of open source code in public repositories.
Also, make sure not to publish these files with sensitive data as part of open source code in public repositories.
<br>
<br>

Expand Down

0 comments on commit fd3cc8d

Please sign in to comment.