diff --git a/shared/typeflow/codeql/typeflow/TypeFlow.qll b/shared/typeflow/codeql/typeflow/TypeFlow.qll index 87840fb4d64..d34604fcc56 100644 --- a/shared/typeflow/codeql/typeflow/TypeFlow.qll +++ b/shared/typeflow/codeql/typeflow/TypeFlow.qll @@ -30,8 +30,8 @@ signature module TypeFlowInput { } /** - * Gets an identifier for node `n`, if any. When not implemented for a given node, - * the library will use location-based ranking. + * Gets an identifier for node `n`, if any. When no identifier is provided for `n`, + * the library falls back to location-based ranking. */ default int getTypeFlowNodeId(TypeFlowNode n) { none() } diff --git a/shared/typeflow/codeql/typeflow/UniversalFlow.qll b/shared/typeflow/codeql/typeflow/UniversalFlow.qll index ddf01e7dd8b..64a0ed846a0 100644 --- a/shared/typeflow/codeql/typeflow/UniversalFlow.qll +++ b/shared/typeflow/codeql/typeflow/UniversalFlow.qll @@ -46,8 +46,8 @@ signature module UniversalFlowInput { } /** - * Gets an identifier for node `n`, if any. When not implemented for a given node, - * the library will use location-based ranking. + * Gets an identifier for node `n`, if any. When no identifier is provided for `n`, + * the library falls back to location-based ranking. */ default int getFlowNodeId(FlowNode n) { none() }