Skip to content

Commit 24bfd05

Browse files
authored
Merge pull request #1493 from jbampton/use-lowercase-cfml-tags
Use lowercase CFML tags
2 parents 7b6a26a + 8c8186c commit 24bfd05

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

builders/dash/templates/changelog.cfm

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<!--- check attributes --->
4343
<cfset tagAttr = value.page.getAttributes()>
4444
<cfif false>
45-
<Cfdump var=#value.page#><cfabort>
45+
<cfdump var=#value.page#><cfabort>
4646
</cfif>
4747
<cfif isArray(tagAttr)>
4848
<cfset newArgs = []>

builders/html/templates/changelog.cfm

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<!--- check attributes --->
4343
<cfset tagAttr = value.page.getAttributes()>
4444
<cfif false>
45-
<Cfdump var=#value.page#><cfabort>
45+
<cfdump var=#value.page#><cfabort>
4646
</cfif>
4747
<cfif isArray(tagAttr)>
4848
<cfset newArgs = []>

docs/recipes/index.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@
12841284
"file": "thread-task.md",
12851285
"title": "Thread Tasks",
12861286
"path": "/docs/recipes/thread-task.md",
1287-
"hash": "d587d6a05f098f792004b2e9963d5ac4",
1287+
"hash": "c415d68e36a76d88f567024a72321edf",
12881288
"keywords": [
12891289
"Thread Tasks",
12901290
"Daemon Threads",

docs/recipes/thread-task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Regular Threads have the following characteristics:
3030

3131
1. **Bound to current request**: With the help of CFThread you can always see what the thread is doing. With `action='join'` you can wait until the thread ends and join it. You can also call `action='terminate'` and end the thread. You always have control over the thread with the various actions.
3232

33-
2. **Runs only once**: The thread runs only once. It ends at the end of the Cfthread tag or if there is an exception.
33+
2. **Runs only once**: The thread runs only once. It ends at the end of the cfthread tag or if there is an exception.
3434

35-
3. **It fails when it fails**: There is no special exception handling so when the thread fails it fails unless you have Cftry, cfcatch inside the thread and you have exception handling there.
35+
3. **It fails when it fails**: There is no special exception handling so when the thread fails it fails unless you have cftry, cfcatch inside the thread and you have exception handling there.
3636

3737
## Example 1
3838

0 commit comments

Comments
 (0)