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 `===`. :::