File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
javascript/ql/src/semmle/javascript Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -463,9 +463,9 @@ module AccessPath {
463463 type = AccessPathWrite ( ) and
464464 result = getAWriteNode ( root , path )
465465 }
466-
466+
467467 /**
468- * Gets a `ControlFlowNode` for a read to `path` from `root`.
468+ * Gets a `ControlFlowNode` for a read to `path` from `root`.
469469 */
470470 private ControlFlowNode getAReadNode ( Root root , string path ) {
471471 exists ( DataFlow:: PropRead read | read .asExpr ( ) = result |
@@ -475,7 +475,7 @@ module AccessPath {
475475 }
476476
477477 /**
478- * Gets a `ControlFlowNode` for a write to `path` from `root`.
478+ * Gets a `ControlFlowNode` for a write to `path` from `root`.
479479 */
480480 private ControlFlowNode getAWriteNode ( Root root , string path ) {
481481 result = root .getAPropertyWrite ( path ) .getWriteNode ( )
You can’t perform that action at this time.
0 commit comments