diff --git a/api/build/BuildProperties.cfc b/api/build/BuildProperties.cfc index baf815653..4a7a4cf55 100644 --- a/api/build/BuildProperties.cfc +++ b/api/build/BuildProperties.cfc @@ -4,7 +4,7 @@ * @accessors true */ component accessors=true { - cwd = GetDirectoryFromPath( GetCurrentTemplatePath() ); + cwd = GetDirectoryFromPath( GetCurrentTemplatePath() ); property name="docsDir" default="#ExpandPath( "/docs/" )#"; property name="functionReferenceDirectory" default="#docsDir#03.reference/01.functions/"; property name="tagReferenceDirectory" default="#docsDir#03.reference/02.tags/"; diff --git a/api/reference/ObjectReferenceReader.cfc b/api/reference/ObjectReferenceReader.cfc index 8c0fd8c6b..a19702f62 100644 --- a/api/reference/ObjectReferenceReader.cfc +++ b/api/reference/ObjectReferenceReader.cfc @@ -30,13 +30,13 @@ component accessors=true { if ( func.keyExists("member") && func.member.count() gt 0){ var member = func.member; if (not objects.keyExists(member.type) ) - objects[member.type] = StructNew("linked"); + objects[member.type] = StructNew("linked"); } //var convertedFunc = _getFunctionDefinition( functionName ); //functions[ functionName ] = convertedFunc; - } - setObjects( objects ); + } + setObjects( objects ); } /* diff --git a/api/sqlitecfc/tags/query.cfm b/api/sqlitecfc/tags/query.cfm index efa718909..072ec9fb7 100644 --- a/api/sqlitecfc/tags/query.cfm +++ b/api/sqlitecfc/tags/query.cfm @@ -8,8 +8,8 @@ ---> - @@ -21,14 +21,14 @@ - - diff --git a/builders/html/templates/function.cfm b/builders/html/templates/function.cfm index dd958c78e..3d382bada 100644 --- a/builders/html/templates/function.cfm +++ b/builders/html/templates/function.cfm @@ -7,7 +7,7 @@ #getEditLink(path=local.fn.getSourceFile(), edit=args.edit)# #markdownToHtml( local.fn.getBody() )# -

Status: #local.fn.getStatus()#

diff --git a/docs/03.reference/01.functions/year/_examples.md b/docs/03.reference/01.functions/year/_examples.md index 5f8a27335..87f9f83d7 100644 --- a/docs/03.reference/01.functions/year/_examples.md +++ b/docs/03.reference/01.functions/year/_examples.md @@ -1,4 +1,4 @@ ```luceescript+trycf - thisYear = year( now() ); + thisYear = year( now() ); dump( thisYear ); ``` diff --git a/docs/03.reference/02.tags/argument/tag.md b/docs/03.reference/02.tags/argument/tag.md index 2d16dbfd7..c9da90801 100644 --- a/docs/03.reference/02.tags/argument/tag.md +++ b/docs/03.reference/02.tags/argument/tag.md @@ -1,7 +1,7 @@ --- title: id: tag-argument -related: +related: - tag-function - tag-component categories: diff --git a/docs/03.reference/02.tags/catch/_examples.md b/docs/03.reference/02.tags/catch/_examples.md index e42bfde7e..067227e8a 100644 --- a/docs/03.reference/02.tags/catch/_examples.md +++ b/docs/03.reference/02.tags/catch/_examples.md @@ -3,7 +3,7 @@ ```lucee+trycf - + diff --git a/docs/03.reference/02.tags/finally/_examples.md b/docs/03.reference/02.tags/finally/_examples.md index 10188779e..37244df2f 100644 --- a/docs/03.reference/02.tags/finally/_examples.md +++ b/docs/03.reference/02.tags/finally/_examples.md @@ -1,7 +1,7 @@ ```lucee+trycf - + Caught an error. diff --git a/docs/04.guides/02.installing-lucee/02.windows/04.installing-oracle-java-on-windows/page.md b/docs/04.guides/02.installing-lucee/02.windows/04.installing-oracle-java-on-windows/page.md index dbd50e06a..df7f8977d 100644 --- a/docs/04.guides/02.installing-lucee/02.windows/04.installing-oracle-java-on-windows/page.md +++ b/docs/04.guides/02.installing-lucee/02.windows/04.installing-oracle-java-on-windows/page.md @@ -16,7 +16,8 @@ Which is the right one for my server? It requires approximately 145MB of disk space. -**Java SE Development Kit (JDK)** is designed for development servers and includes a complete JRE plus tools for developing, debugging, and monitoring Java applications. Monitoring tools like the cool [Mission Control](https://docs.oracle.com/javacomponents/jmc-5-4/jmc-user-guide/index.html) can help solve problems. +**Java SE Development Kit (JDK)** is designed for development servers and includes a complete JRE plus tools for developing, debugging, and monitoring Java applications. Monitoring tools like the cool [Mission Control](https://docs.oracle.com/javacomponents/jmc-5-4/jmc-user-guide/index.html) can help solve problems. + *Note:* If you plan to use [VisualVM](http://visualvm.java.net/) as your Java monitoring and troubleshooting tool, then the JDK is your choice. It requires approximately 310MB of diskspace. Installing either the Server JRE or JDK is simple and takes around 10 minutes. diff --git a/docs/04.guides/04.cookbooks/43.QOQ_Sucks/page.md b/docs/04.guides/04.cookbooks/43.QOQ_Sucks/page.md index 300862794..a4964da03 100644 --- a/docs/04.guides/04.cookbooks/43.QOQ_Sucks/page.md +++ b/docs/04.guides/04.cookbooks/43.QOQ_Sucks/page.md @@ -13,7 +13,7 @@ categories: This document explains why Query of Query is not the best approach and provides simple example about QOQ. The main reason you would not want to use query of query is that it is very slow. -### Example : ### +### Example : ### ```lucee+trycf