Skip to content

Commit 853bb1b

Browse files
authored
Merge pull request #1692 from jbampton/fix-spelling
Fix spelling
2 parents 43a9ab5 + 28f4d25 commit 853bb1b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

data/en/lsparsecurrency.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"examples": [
2222
{
2323
"title": "lsParseCurrency Example",
24-
"description":"LSParseCurrency coverts a locale-specific currency string to a number.",
24+
"description":"LSParseCurrency converts a locale-specific currency string to a number.",
2525
"code":"lsParseCurrency(\"$120.50\")",
2626
"result":"120.5",
2727
"testable":false

data/en/querylazy.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "function",
44
"syntax": "querylazy()",
55
"returns": "void",
6-
"description": "Executes a SQL query without loading the data entierly to memory. Instead it calls the given Function with every single row",
6+
"description": "Executes a SQL query without loading the data entirely to memory. Instead it calls the given Function with every single row",
77
"params": [
88
{
99
"default": "",
@@ -50,7 +50,7 @@
5050
"title": "QueryLazy Example",
5151
"description": "This example demonstrates how to use the querylazy function to execute a query without loading the data entirely to memory.",
5252
"code": "records = 0\n queryLazy(\n sql=\"SELECT * FROM users;\",\n listener=function(row){\n // Do something with a query row\n records++;\n },\n options={\n datasource:\"MyDatasource\"\n }\n );\n echo(\"Records: #records#\");",
53-
"result": "Recrods: 10"
53+
"result": "Records: 10"
5454
}
5555
]
5656
}

data/en/structsetmetadata.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"examples": [
1818
{
1919
"title":"Add metadata to a struct",
20-
"description":"Add metadata to a struct and serialze to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.",
20+
"description":"Add metadata to a struct and serialize to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.",
2121
"code":"testStruct = structNew(\"ordered\");\ntestStruct.testdata = \"example\";\ntestStruct.testdata2 = \"20\";\nmetadata = {\n testdata: {type: \"string\", name: \"td1\" },\n testdata2: {type: \"numeric\", name: \"td2\" }\n};\nStructSetMetadata(testStruct,metadata);\nwriteoutput(SerializeJSON(testStruct));",
2222
"result":"{\"td1\":\"example\", \"td2\":20.0}",
2323
"runnable": true
2424
},
2525
{
2626
"title":"Add metadata to a struct as a member function",
27-
"description":"Add metadata to a struct and serialze to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.",
27+
"description":"Add metadata to a struct and serialize to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.",
2828
"code":"testStruct = structNew(\"ordered\");\ntestStruct.testdata = \"example\";\ntestStruct.testdata2 = \"20\";\nmetadata = {\n testdata: {type: \"string\", name: \"td1\" },\n testdata2: {type: \"numeric\", name: \"td2\" }\n};\ntestStruct.setMetadata(metadata);\nwriteoutput(SerializeJSON(testStruct));",
2929
"result":"{\"td1\":\"example\", \"td2\":20.0}",
3030
"runnable": true

guides/en/security.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you are running Adobe ColdFusion versions prior to 2021 (e.g. CF2018, 2016, 1
3636

3737
It is also important to note that Adobe, and Lucee, regularly release security patches for those application servers and you should regularly ensure that your server is on the latest security point release to avoid being the target of potential hackers. Likewise, much of the underlying infrastructure of these application servers, including Java, Tomcat, Apache, nginx, etc. also have security releases and it is important to keep these underlying services up to date with the latest security point release.
3838

39-
You can use tools such as [HackMyCF's ColdFusion server security scanner](https://foundeo.com/hack-my-cf/) to continiously monitor the version of ColdFusion, Lucee, Tomcat and Java that you are running to make sure it is up to date with the latest security patches.
39+
You can use tools such as [HackMyCF's ColdFusion server security scanner](https://foundeo.com/hack-my-cf/) to continuously monitor the version of ColdFusion, Lucee, Tomcat and Java that you are running to make sure it is up to date with the latest security patches.
4040

4141
## Network Security
4242

0 commit comments

Comments
 (0)