From 23485f57e6b8ef102e1db3c1ba03e042861b2f79 Mon Sep 17 00:00:00 2001 From: Alex Kulcsar <38046796+alex-kulcsar@users.noreply.github.com> Date: Sat, 16 Nov 2024 15:43:36 -0500 Subject: [PATCH] Update empty set variable name. --- pxt.json | 2 +- wordlists.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pxt.json b/pxt.json index 3891576..0967f51 100644 --- a/pxt.json +++ b/pxt.json @@ -24,5 +24,5 @@ "supportedTargets": [ "arcade" ], - "preferredEditor": "blocksprj" + "preferredEditor": "tsprj" } diff --git a/wordlists.ts b/wordlists.ts index 8051585..1cb2916 100644 --- a/wordlists.ts +++ b/wordlists.ts @@ -1,6 +1,7 @@ namespace WordLists { //% fixedInstance - export let EmptyFilter: Bloom = new Bloom(null) + //% block="z Empty Filter" + export let zEmptyFilter: Bloom = new Bloom(null) //% block export function isWordInFilter(filter: Bloom, word: string): boolean {