Skip to content

Commit 893c545

Browse files
committed
spelling: disambiguation
Signed-off-by: Josh Soref <[email protected]>
1 parent 8483c79 commit 893c545

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

csharp/ql/lib/semmle/code/csharp/controlflow/internal/ControlFlowGraphImplShared.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ module TestOutput {
885885
/**
886886
* Gets a string used to resolve ties in node and edge ordering.
887887
*/
888-
string getOrderDisambuigation() { result = "" }
888+
string getOrderDisambiguation() { result = "" }
889889
}
890890

891891
query predicate nodes(RelevantNode n, string attr, string val) {
@@ -900,7 +900,7 @@ module TestOutput {
900900
order by
901901
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
902902
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), p.toString(),
903-
p.getOrderDisambuigation()
903+
p.getOrderDisambiguation()
904904
)
905905
).toString()
906906
}
@@ -923,7 +923,7 @@ module TestOutput {
923923
order by
924924
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
925925
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString(), s.toString(),
926-
s.getOrderDisambuigation()
926+
s.getOrderDisambiguation()
927927
)
928928
).toString()
929929
}

ruby/ql/lib/codeql/ruby/controlflow/internal/ControlFlowGraphImplShared.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ module TestOutput {
885885
/**
886886
* Gets a string used to resolve ties in node and edge ordering.
887887
*/
888-
string getOrderDisambuigation() { result = "" }
888+
string getOrderDisambiguation() { result = "" }
889889
}
890890

891891
query predicate nodes(RelevantNode n, string attr, string val) {
@@ -900,7 +900,7 @@ module TestOutput {
900900
order by
901901
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
902902
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), p.toString(),
903-
p.getOrderDisambuigation()
903+
p.getOrderDisambiguation()
904904
)
905905
).toString()
906906
}
@@ -923,7 +923,7 @@ module TestOutput {
923923
order by
924924
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
925925
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString(), s.toString(),
926-
s.getOrderDisambuigation()
926+
s.getOrderDisambiguation()
927927
)
928928
).toString()
929929
}

swift/ql/lib/codeql/swift/controlflow/internal/ControlFlowGraphImplShared.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ module TestOutput {
885885
/**
886886
* Gets a string used to resolve ties in node and edge ordering.
887887
*/
888-
string getOrderDisambuigation() { result = "" }
888+
string getOrderDisambiguation() { result = "" }
889889
}
890890

891891
query predicate nodes(RelevantNode n, string attr, string val) {
@@ -900,7 +900,7 @@ module TestOutput {
900900
order by
901901
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
902902
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), p.toString(),
903-
p.getOrderDisambuigation()
903+
p.getOrderDisambiguation()
904904
)
905905
).toString()
906906
}
@@ -923,7 +923,7 @@ module TestOutput {
923923
order by
924924
l.getFile().getBaseName(), l.getFile().getAbsolutePath(), l.getStartLine(),
925925
l.getStartColumn(), l.getEndLine(), l.getEndColumn(), t.toString(), s.toString(),
926-
s.getOrderDisambuigation()
926+
s.getOrderDisambiguation()
927927
)
928928
).toString()
929929
}

swift/ql/test/library-tests/controlflow/graph/Cfg.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class MyRelevantNode extends RelevantNode {
1111

1212
private AstNode asAstNode() { result = this.getNode().asAstNode() }
1313

14-
override string getOrderDisambuigation() {
14+
override string getOrderDisambiguation() {
1515
result = this.asAstNode().getPrimaryQlClasses()
1616
or
1717
not exists(this.asAstNode()) and result = ""

0 commit comments

Comments
 (0)