Skip to content

Commit

Permalink
typo in function hints
Browse files Browse the repository at this point in the history
  • Loading branch information
justincarter committed Nov 20, 2015
1 parent adf2380 commit af0e82a
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions packages/dbgateways/BaseGateway.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@
<cfreturn stResult />
</cffunction>

<cffunction name="addIndex" access="public" output="false" returntype="struct" hint="Deploys the index into a MySQL database.">
<cffunction name="addIndex" access="public" output="false" returntype="struct" hint="Deploys the index into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="indexname" type="string" required="true" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down Expand Up @@ -721,7 +721,7 @@
<cfreturn stResult />
</cffunction>

<cffunction name="repairIndex" access="public" output="false" returntype="struct" hint="Repairs the index in a MySQL database.">
<cffunction name="repairIndex" access="public" output="false" returntype="struct" hint="Repairs the index in the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="indexname" type="string" required="true" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down Expand Up @@ -753,7 +753,7 @@
<cfreturn stResult />
</cffunction>

<cffunction name="dropIndex" access="public" output="false" returntype="struct" hint="Drops the index from a MySQL database.">
<cffunction name="dropIndex" access="public" output="false" returntype="struct" hint="Drops the index from the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="indexname" type="string" required="true" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down
8 changes: 4 additions & 4 deletions packages/dbgateways/H2Gateway.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--- DEPLOYMENT --->

<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into a MySQL database.">
<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />

<cfset var resultSQL = "">
Expand Down Expand Up @@ -66,7 +66,7 @@
<cfreturn resultSQL>
</cffunction>

<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into a MySQL database.">
<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="bDropTable" type="boolean" required="false" default="false" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down Expand Up @@ -262,7 +262,7 @@
<cfreturn stResult />
</cffunction>

<cffunction name="addIndex" access="public" output="false" returntype="struct" hint="Deploys the index into a MySQL database.">
<cffunction name="addIndex" access="public" output="false" returntype="struct" hint="Deploys the index into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="indexname" type="string" required="true" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down Expand Up @@ -312,7 +312,7 @@
<cfreturn stResult />
</cffunction>

<cffunction name="dropIndex" access="public" output="false" returntype="struct" hint="Drops the index from a MySQL database.">
<cffunction name="dropIndex" access="public" output="false" returntype="struct" hint="Drops the index from the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="indexname" type="string" required="true" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down
4 changes: 2 additions & 2 deletions packages/dbgateways/MSSQL2005Gateway.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--- DEPLOYMENT --->

<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into a MySQL database.">
<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />

<cfset var resultSQL = "">
Expand Down Expand Up @@ -60,7 +60,7 @@
<cfreturn resultSQL>
</cffunction>

<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into a MySQL database.">
<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="bDropTable" type="boolean" required="false" default="false" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down
4 changes: 2 additions & 2 deletions packages/dbgateways/MSSQL2012Gateway.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!--- DEPLOYMENT --->

<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into a MySQL database.">
<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />

<cfset var resultSQL = "">
Expand Down Expand Up @@ -66,7 +66,7 @@
<cfreturn resultSQL>
</cffunction>

<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into a MySQL database.">
<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="bDropTable" type="boolean" required="false" default="false" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down
8 changes: 4 additions & 4 deletions packages/dbgateways/MSSQLGateway.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

<!--- DEPLOYMENT --->

<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into a MySQL database.">
<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />

<cfset var resultSQL = "">
Expand Down Expand Up @@ -142,7 +142,7 @@
<cfreturn resultSQL>
</cffunction>

<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into a MySQL database.">
<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="bDropTable" type="boolean" required="false" default="false" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down Expand Up @@ -487,7 +487,7 @@
<cfreturn stResult />
</cffunction>

<cffunction name="addIndex" access="public" output="false" returntype="struct" hint="Deploys the index into a MySQL database.">
<cffunction name="addIndex" access="public" output="false" returntype="struct" hint="Deploys the index into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="indexname" type="string" required="true" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down Expand Up @@ -537,7 +537,7 @@
<cfreturn stResult />
</cffunction>

<cffunction name="dropIndex" access="public" output="false" returntype="struct" hint="Drops the index from a MySQL database.">
<cffunction name="dropIndex" access="public" output="false" returntype="struct" hint="Drops the index from the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="indexname" type="string" required="true" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down
4 changes: 2 additions & 2 deletions packages/dbgateways/MySQLGateway.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

<!--- DEPLOYMENT --->

<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into a MySQL database.">
<cffunction name="getDeploySchemaSQL" access="public" output="false" returntype="string" hint="The returns the sql for Deployment of the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />

<cfset var resultSQL = "">
Expand Down Expand Up @@ -117,7 +117,7 @@
<cfreturn resultSQL>
</cffunction>

<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into a MySQL database.">
<cffunction name="deploySchema" access="public" output="false" returntype="struct" hint="Deploys the table structure for a FarCry type into the database.">
<cfargument name="schema" type="struct" required="true" />
<cfargument name="bDropTable" type="boolean" required="false" default="false" />
<cfargument name="logLocation" type="string" required="false" default="" />
Expand Down

0 comments on commit af0e82a

Please sign in to comment.