From 265fe8509cbec406cc9a89ea944617a019def34a Mon Sep 17 00:00:00 2001 From: jverzani Date: Tue, 11 Aug 2026 17:50:01 -0400 Subject: [PATCH] no fight --- _typos.toml | 2 +- quarto/basics/variables.qmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_typos.toml b/_typos.toml index 8efb4b2..55994ba 100644 --- a/_typos.toml +++ b/_typos.toml @@ -23,7 +23,7 @@ Liousville = "Liousville" numer = "numer" denom = "denom" desolve = "desolve" -eqal = "eqal" +egal = "egal" adn = "adn" optin = "optin" diff --git a/quarto/basics/variables.qmd b/quarto/basics/variables.qmd index dba6085..feea32a 100644 --- a/quarto/basics/variables.qmd +++ b/quarto/basics/variables.qmd @@ -221,7 +221,7 @@ Repeating this last line will generate new values of `x` based on the previous o ::: {.callout-note} ## Use of = -The distinction between ``=`` versus `=` is important and one area where common math notation and common computer notation diverge. The mathematical ``=`` indicates *equality*, and is often used with equations and also for assignment. Later, when symbolic math is introduced, the `~` symbol will be used to indicate an equation, though this is by convention and not part of base `Julia`. The computer syntax use of `=` is for *assignment* and *re-assignment*. Equality is tested with `==` and identicalness (or egal) with `===`. +The distinction between ``=`` versus `=` is important and one area where common math notation and common computer notation diverge. The mathematical ``=`` indicates *equality*, and is often used with equations and also for assignment. Later, when symbolic math is introduced, the `~` symbol will be used to indicate an equation, though this is by convention and not part of base `Julia`. The computer syntax use of `=` is for *assignment* and *re-assignment*. Equality is tested with `==` and identicalness with `===`. :::