Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Jul 3, 2024
1 parent 969508b commit 621b150
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/data/DocTree.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ component accessors=true {
}, (_threads != 1), _threads);
request.logger (text="Pages Parsed in #(getTickCount()-start)/1000#s");

_buildTreeHierachy(false);
_buildTreeHierarchy(false);
_parseTree();
}
}
Expand Down Expand Up @@ -263,12 +263,12 @@ component accessors=true {

if (added gt 0 or deleted.len() gt 0)
pageCache.reSort();
_buildTreeHierachy(true);
_buildTreeHierarchy(true);
_parseTree();
}
}

private void function _buildTreeHierachy(boolean reset="false") {
private void function _buildTreeHierarchy(boolean reset="false") {
//var start = getTickCount();
var pages = variables.pageCache.getPages();
for (var pagePath in pages ){
Expand Down Expand Up @@ -333,7 +333,7 @@ component accessors=true {
}

if ( !isPage ){
if ( page.getPath() comtains "/recipes" ){
if ( page.getPath() contains "/recipes" ){
request.logger(text="skipping coz /recipes" );
return;
}
Expand Down

0 comments on commit 621b150

Please sign in to comment.