Skip to content

Commit

Permalink
Reduce margin of error
Browse files Browse the repository at this point in the history
  • Loading branch information
bugarela committed Aug 21, 2023
1 parent bc40dcc commit eede704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quint/src/names/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export function addNamespacesToDef(def: Definition, namespaces: string[]): Defin
return def
}

if (def.name.startsWith(namespace)) {
if (def.name.startsWith(`${namespace}::`)) {
// If the namespace is already in the beginning of the name, don't add it again
return def
}
Expand Down

0 comments on commit eede704

Please sign in to comment.