diff --git a/guides/en/installCF/install.md b/guides/en/installCF/install.md index 4e7ad8ee3..b6bcbd2e2 100644 --- a/guides/en/installCF/install.md +++ b/guides/en/installCF/install.md @@ -316,7 +316,7 @@ Note: A remote instance and a local instance cannot have the same JVM route if t Note: To enable this feature, install admin component on the remote host. - a. In the remote host, open the ColdFusion_installtion\cfusion\jetty\etc\jetty.xml. + a. In the remote host, open the ColdFusion_installation\cfusion\jetty\etc\jetty.xml. b. Search for the string, org.mortbay.jetty.bio.SocketConnector. c. Update the host with the IP address of the remote host. d. Restart the jetty server. diff --git a/lib/Processor.cfc b/lib/Processor.cfc index 7265eaa20..3608004de 100755 --- a/lib/Processor.cfc +++ b/lib/Processor.cfc @@ -38,7 +38,7 @@ component accessors=true singleton { // Set the anchor id anchorSetId : true, // Set the anchor id but also the name - achorSetName : true, + anchorSetName : true, // Do we create the anchor for the full header or just before it. True is wrap, false is just create anchor tag anchorWrapText : true, // The class(es) to apply to the anchor @@ -140,7 +140,7 @@ component accessors=true singleton { anchorLinkExtension.ANCHORLINKS_SET_NAME, javacast( "boolean", - arguments.options.achorSetName + arguments.options.anchorSetName ) ) .set( diff --git a/lib/leaderboard.cfc b/lib/leaderboard.cfc index e12b2343f..9a04e22b7 100644 --- a/lib/leaderboard.cfc +++ b/lib/leaderboard.cfc @@ -143,7 +143,7 @@ component { var person = getPerson( stat.author.url, stat.author.login ); person['link'] = stat.author.html_url; - person['avator'] = len(stat.author.gravatar_id) ? stat.author.gravatar_id : stat.author.avatar_url; + person['avatar'] = len(stat.author.gravatar_id) ? stat.author.gravatar_id : stat.author.avatar_url; structAppend( person, calcStatistics( stat.weeks ) ); addRow( qContributors, person ); @@ -208,7 +208,7 @@ component { * purpose: * * *********************************************************************************/ private query function createQuery(){ - var columns = "name,link,avator,lines,commits,effort,lastcommit,weeksago"; + var columns = "name,link,avatar,lines,commits,effort,lastcommit,weeksago"; var dbtypes = "varchar,varchar,varchar,integer,integer,integer,date,integer"; return queryNew( columns, dbtypes ); diff --git a/views/index.cfm b/views/index.cfm index b531acfce..9f6a20f73 100644 --- a/views/index.cfm +++ b/views/index.cfm @@ -46,7 +46,7 @@ qPeople = oLeader.get();