Skip to content

Fix spelling #1693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/en/installCF/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions lib/Processor.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -140,7 +140,7 @@ component accessors=true singleton {
anchorLinkExtension.ANCHORLINKS_SET_NAME,
javacast(
"boolean",
arguments.options.achorSetName
arguments.options.anchorSetName
)
)
.set(
Expand Down
4 changes: 2 additions & 2 deletions lib/leaderboard.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down Expand Up @@ -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 );
Expand Down
2 changes: 1 addition & 1 deletion views/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ qPeople = oLeader.get();
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="contributor row">
<div class="col-xs-5 text-center">
<a href="#encodeForHTMLAttribute(qPeople.link)#" rel="nofollow"><img src="#encodeForHTMLAttribute(qPeople.avator)#" class="img-rounded" /></a>
<a href="#encodeForHTMLAttribute(qPeople.link)#" rel="nofollow"><img src="#encodeForHTMLAttribute(qPeople.avatar)#" class="img-rounded" /></a>
<div class="text-muted"><strong>#encodeForHTML(qPeople.name)#</strong></div>
</div>
<div class="col-xs-7">
Expand Down