diff --git a/data/en/lsparsecurrency.json b/data/en/lsparsecurrency.json index 91fa2446c..d9549d041 100644 --- a/data/en/lsparsecurrency.json +++ b/data/en/lsparsecurrency.json @@ -21,7 +21,7 @@ "examples": [ { "title": "lsParseCurrency Example", - "description":"LSParseCurrency coverts a locale-specific currency string to a number.", + "description":"LSParseCurrency converts a locale-specific currency string to a number.", "code":"lsParseCurrency(\"$120.50\")", "result":"120.5", "testable":false diff --git a/data/en/querylazy.json b/data/en/querylazy.json index 8aedd293c..81db37027 100644 --- a/data/en/querylazy.json +++ b/data/en/querylazy.json @@ -3,7 +3,7 @@ "type": "function", "syntax": "querylazy()", "returns": "void", - "description": "Executes a SQL query without loading the data entierly to memory. Instead it calls the given Function with every single row", + "description": "Executes a SQL query without loading the data entirely to memory. Instead it calls the given Function with every single row", "params": [ { "default": "", @@ -50,7 +50,7 @@ "title": "QueryLazy Example", "description": "This example demonstrates how to use the querylazy function to execute a query without loading the data entirely to memory.", "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#\");", - "result": "Recrods: 10" + "result": "Records: 10" } ] } \ No newline at end of file diff --git a/data/en/structsetmetadata.json b/data/en/structsetmetadata.json index ba177cf4b..9feff6c38 100644 --- a/data/en/structsetmetadata.json +++ b/data/en/structsetmetadata.json @@ -17,14 +17,14 @@ "examples": [ { "title":"Add metadata to a struct", - "description":"Add metadata to a struct and serialze to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.", + "description":"Add metadata to a struct and serialize to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.", "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));", "result":"{\"td1\":\"example\", \"td2\":20.0}", "runnable": true }, { "title":"Add metadata to a struct as a member function", - "description":"Add metadata to a struct and serialze to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.", + "description":"Add metadata to a struct and serialize to a json.\nIt is changing the keyname and convert a string (\"20\") to a number.", "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));", "result":"{\"td1\":\"example\", \"td2\":20.0}", "runnable": true diff --git a/guides/en/security.md b/guides/en/security.md index 333feb178..04842d0d9 100644 --- a/guides/en/security.md +++ b/guides/en/security.md @@ -36,7 +36,7 @@ If you are running Adobe ColdFusion versions prior to 2021 (e.g. CF2018, 2016, 1 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. -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. +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. ## Network Security