From 9c66ce2b5c6b66208413891f3422f8449e0a1ea4 Mon Sep 17 00:00:00 2001 From: "Zachary K. Watkins" <3458875+ZachWatkins@users.noreply.github.com> Date: Tue, 30 Jun 2026 11:14:12 -0500 Subject: [PATCH] Clarify operator dictation examples in documentation Updated the description of the 'is equal' operator to include '===' and added 'is weak equal' for '==' in the documentation. --- docs/Voice Coding/operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Voice Coding/operators.md b/docs/Voice Coding/operators.md index 367a34a6..340a701a 100644 --- a/docs/Voice Coding/operators.md +++ b/docs/Voice Coding/operators.md @@ -6,6 +6,6 @@ sidebar_position: 3 With supported languages, most operators can be dictated with `op (operator name)` and comparison operators can be dictated with `is (operator name)`. -For example, saying `op equals` while editing a Python file inserts `=`. Saying `is equal` inserts `==`. +For example, saying `op equals` while editing a Python file inserts `=`. Saying `is equal` inserts `===` and saying `is weak equal` inserts `==`. To see which operators are supported for a given language and their spoken forms, use the `help operators` command. To change how operators are inserted, find the Python file for the language implementation in the [lang directory](https://github.com/talonhub/community/tree/main/lang) and edit the `Operators` object. You can find the definitions for the spoken forms of the operators in the .talon-list files with names that start with `operators` in the [lang/tags directory](https://github.com/talonhub/community/tree/main/lang/tags).