Skip to content

Commit 8d7bddd

Browse files
jbamptonactions-userzspitzer
authored
docs: fix spelling (#1505)
* docs: fix spelling Markdown lint fix up * Update recipes index and README * Update recipes index and README --------- Co-authored-by: Lucee Docs GitHub Action <action@github.com> Co-authored-by: Zac Spitzer <zac.spitzer@gmail.com>
1 parent d3c374a commit 8d7bddd

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

docs/recipes/breaking-changes-6-0.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ These extension are still available, but just need to be manually installed.
5858

5959
### CFQUERYPARAM no longer autocasts empty values to null
6060

61-
Prior to Lucee 6, cfqueryparam would autmatically case empty values to null.
61+
Prior to Lucee 6, cfqueryparam would automatically case empty values to null.
6262

6363
With Lucee 6, we have changed this behaviour to match ACF, as this can introduce subtle bugs and is slight less performant.
6464

@@ -76,7 +76,7 @@ The order of the arguments for the member function [[method-datetime-diff]] was
7676

7777
### Use JVM cacerts by default
7878

79-
Prior to Lucee 6, Lucee would bundle it's own `cacerts` file, which caused problems over time as newer root certificates wouldn't be accepted.
79+
Prior to Lucee 6, Lucee would bundle its own `cacerts` file, which caused problems over time as newer root certificates wouldn't be accepted.
8080

8181
There is an environment variable `LUCEE.USE.LUCEE.SSL.TRUSTSTORE=TRUE` which can be set to re-enable the older behavior.
8282

@@ -140,7 +140,7 @@ To restore previous behaviour, use the environment variables `LUCEE_STORE_EMPTY=
140140

141141
[LDEV-2024](https://luceeserver.atlassian.net/browse/LDEV-2024)
142142

143-
### FileUpload now supports strict and allowedExtesions arguments
143+
### FileUpload now supports strict and allowedExtensions arguments
144144

145145
For ACF compatibility, the function signature for [[function-fileupload]] was changed.
146146

@@ -156,7 +156,7 @@ Lucee 6 now accepts the same arguments as ACF [[function-replacelist]]
156156

157157
[LDEV-2729](https://luceeserver.atlassian.net/browse/LDEV-2729)
158158

159-
### struct.delete() now returns the modfied struct
159+
### struct.delete() now returns the modified struct
160160

161161
[[method-struct-delete]]
162162

docs/recipes/execution-log.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ When configuring any ExecutionLog implementation, you can specify these argument
175175
| Property | Description | Default | Notes |
176176
|----------|-------------|---------|-------|
177177
| `log-level` | Sets the severity level for log entries. Controls visibility in consolidated logs and allows filtering when reviewing. | `trace` | `"trace"`, `"debug"`, `"info"`, `"warn"`, `"error"` |
178-
| `log-name` | Customizes the logger name for better organization and filtering in consolidated logs. | `lucee.runtime.engine.Controler` | `"execution"`, `"performance"`, `"myapp.performance"` |
178+
| `log-name` | Customizes the logger name for better organization and filtering in consolidated logs. | `lucee.runtime.engine.Controller` | `"execution"`, `"performance"`, `"myapp.performance"` |
179179
| `snippet` | When enabled, captures and displays the actual CFML code being executed alongside timing information. Particularly valuable when analyzing logs after execution. | `false` | Set to `true` to include source code in logs |
180180

181181
### Example Log Implementation Configuration

docs/recipes/index.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"file": "breaking-changes-6-0.md",
112112
"title": "Breaking Changes Between Lucee 5.4 and 6.0",
113113
"path": "/docs/recipes/breaking-changes-6-0.md",
114-
"hash": "e21c44b420f55ac43a46a8daf12fca42",
114+
"hash": "a3bdfe15ad39f2f2a4c740da0344c40b",
115115
"keywords": [
116116
"breaking changes",
117117
"Lucee 5.4",
@@ -509,7 +509,7 @@
509509
"file": "execution-log.md",
510510
"title": "ExecutionLog",
511511
"path": "/docs/recipes/execution-log.md",
512-
"hash": "6ba4d51cbdcf1c38ae8f0f276bd1e1d3",
512+
"hash": "eb7957ee15995201332d101aab57acfa",
513513
"keywords": [
514514
"executionlog",
515515
"debug",
@@ -1281,7 +1281,7 @@
12811281
"file": "startup-listeners-code.md",
12821282
"title": "Startup Listeners - Server.cfc and Web.cfc",
12831283
"path": "/docs/recipes/startup-listeners-code.md",
1284-
"hash": "edb4b5bdad97967849c5796a18a0fe09",
1284+
"hash": "373d17116152d2eca8704f288942dec1",
12851285
"keywords": [
12861286
"startup",
12871287
"warmup",
@@ -1500,7 +1500,7 @@
15001500
"file": "yaml-processing.md",
15011501
"title": "YAML Processing in Lucee 7",
15021502
"path": "/docs/recipes/yaml-processing.md",
1503-
"hash": "7d0bc44493d4a7f908bfe4968c28ac05",
1503+
"hash": "ea74a925eef4ae78701b172787ae1b35",
15041504
"keywords": [
15051505
"YAML",
15061506
"SnakeYAML",

docs/recipes/startup-listeners-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Start the Lucee Server, and the server console should display the above system o
7777

7878
#### onBuild (since Lucee 6.1.1)
7979

80-
`onBuild` is called when you start Lucee with the environment variable `LUCEE_BUILD` (or the older variable `LUCEE_ENABLE_WARMUP`) set to `true`. You can also use the system property `-Dlucee.build` (or `-dlucee-enable.warmup`). This feature got indroduced in Lucee 6.1.1.
80+
`onBuild` is called when you start Lucee with the environment variable `LUCEE_BUILD` (or the older variable `LUCEE_ENABLE_WARMUP`) set to `true`. You can also use the system property `-Dlucee.build` (or `-dlucee-enable.warmup`). This feature got introduced in Lucee 6.1.1.
8181

8282
## Web.cfc
8383

docs/recipes/yaml-processing.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ implementation("org.yaml:snakeyaml:2.4")
2929
## Simple Example
3030

3131
Create a YAML file `customer.yaml`:
32+
3233
```yaml
3334
firstName: "John"
3435
lastName: "Doe"
@@ -85,6 +86,7 @@ component javasettings='{"maven":["org.yaml:snakeyaml:2.4"]}' {
8586
```
8687

8788
Usage:
89+
8890
```cfml
8991
yamlProcessor = new YamlProcessor();
9092

0 commit comments

Comments
 (0)