Apply suggestions from code review

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Tom Hvitved
2026-06-16 08:57:37 +02:00
committed by GitHub
parent 686e98c6ff
commit f143dad1b2
2 changed files with 4 additions and 4 deletions

View File

@@ -30,8 +30,8 @@ signature module TypeFlowInput<LocationSig Location> {
}
/**
* 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() }

View File

@@ -46,8 +46,8 @@ signature module UniversalFlowInput<LocationSig Location> {
}
/**
* 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() }