From 78483275087cc0c0385916fc5cca3ecb92d336af Mon Sep 17 00:00:00 2001 From: mattwparas Date: Sat, 6 Jul 2024 09:22:59 -0700 Subject: [PATCH] another instruction update --- STEEL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STEEL.md b/STEEL.md index 1bda27597..401fffda8 100644 --- a/STEEL.md +++ b/STEEL.md @@ -111,7 +111,7 @@ For example, if we wanted to select a random theme at startup: (define (randomly-pick-theme options) ;; Randomly select the theme from the possible themes list - (helix.theme *helix.cx* (list (select-random options)))) + (helix.theme (list (select-random options)))) (randomly-pick-theme possible-themes)