git » homepage.git » commit 7235793

tweaks

author Alan Dipert
2026-02-20 20:19:08 UTC
committer Alan Dipert
2026-02-20 20:19:08 UTC
parent fb331e88367784e67b99f6da228d9a224e4ded7a

tweaks

md/_GridCalc.md +1 -1

diff --git a/md/_GridCalc.md b/md/_GridCalc.md
index da27e09..a380c97 100644
--- a/md/_GridCalc.md
+++ b/md/_GridCalc.md
@@ -66,7 +66,7 @@ If you have not used [RPN](https://en.wikipedia.org/wiki/Reverse_Polish_notation
 
 That model is fast and easy, once it clicks. A linear instruction stream maps cleanly onto a grid. A similar scheme is the basis for [stack machines](https://en.wikipedia.org/wiki/Stack_machine), which is probably where I first encountered the idea (many of the first Lisp compilers targeted virtual or "bytecoded" stack machines. The JVM is the world's most successful stack machine).
 
-But it wasn't until I encountered Christian Lawson-Perfect’s excellent [Nice Calculator](https://somethingorotherwhatever.com/items/clp-s-nice-calculator/) web app that I started to use an RPN calculator day to day. It renders expressions as editable bubbles in a tree, which is a beautiful UI idea. I wanted that same editability, but with a layout that uses screen space better on a phone, any with a way to refer symbolically to previous values and results.
+But it wasn't until I encountered Christian Lawson-Perfect’s excellent [Nice Calculator](https://somethingorotherwhatever.com/items/clp-s-nice-calculator/) web app that I started to use an RPN calculator day to day. It renders expressions as editable bubbles in a tree, which is a beautiful UI idea. I wanted that same editability, but with a layout that uses screen space better on a phone, and with a way to refer symbolically to previous inputs and results.
 
 ## Under the hood