Skip to content

Commit 34905ad

Browse files
authored
Update comment about case insensitive
1 parent 4b9ea34 commit 34905ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blocks/utils/validator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Take the proposed name, and return a legal name.
2424
* A legal name is:
2525
* 1. not empty.
26-
* 2. doesn't collide with other names.
26+
* 2. doesn't collide with other names (case insensitive).
2727
* 3. Optional: is a valid python identifier.
2828
*/
2929
export function makeLegalName(proposedName: string, otherNames: string[], mustBeValidPythonIdentifier: boolean): string {

0 commit comments

Comments
 (0)