From 05cfbce0bb8b8a8ed16bea8f792b17da2ac53241 Mon Sep 17 00:00:00 2001 From: ygrek Date: Mon, 8 Dec 2025 12:46:14 -0500 Subject: [PATCH] Adverbs.ipynb: fix each-prior --- Adverbs.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adverbs.ipynb b/Adverbs.ipynb index 515a0d0..0b23929 100644 --- a/Adverbs.ipynb +++ b/Adverbs.ipynb @@ -9,7 +9,7 @@ "\n", "K's adverbs, like their namesakes in linguistics, determine _how_ a verb is applied to its arguments. We can think of them as advanced functional looping constructs. If you're familiar with _filter_, _map_ or _reduce_ from other languages, these would be examples of adverbs in k. The adverbs in k tend to be overloaded on argument types, meaning that some care is required when deciphering code. \n", "\n", - "In `ngn/k`, there is a ref-card for adverbs available as `\\'`. The basic adverbs in most ks are _each_ `'`, _reduce_ `/`, _scan_ `\\`, _each-prior_ `/:`, _each-right_ `/:` and _each-left_ `\\:`, but many more are overloaded on the basic set depending on argument types and valence.\n", + "In `ngn/k`, there is a ref-card for adverbs available as `\\'`. The basic adverbs in most ks are _each_ `'`, _reduce_ `/`, _scan_ `\\`, _each-prior_ `':`, _each-right_ `/:` and _each-left_ `\\:`, but many more are overloaded on the basic set depending on argument types and valence.\n", "\n", "As types matter so much for this, we'll adopt the following notation, variations of which most ks use in their ref-cards:\n", "\n",