aboutsummaryrefslogtreecommitdiff
path: root/doc/pair.md
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-06-05 17:19:14 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-06-05 17:19:14 -0400
commit8b115bd20d7a91361a7fe87f293a8a53ff12406c (patch)
tree44e4bd404532d007b5f2bdbdfc392c1698a20a49 /doc/pair.md
parentd6b2e28359a2e0f5f8a0f98782b30d34c18138a1 (diff)
Editing continues
Diffstat (limited to 'doc/pair.md')
-rw-r--r--doc/pair.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/pair.md b/doc/pair.md
index d4519e49..377ffa0b 100644
--- a/doc/pair.md
+++ b/doc/pair.md
@@ -30,7 +30,7 @@ However, before making a long list of this sort, consider that your goal might b
## Pair versus Couple
-Enlist and Pair closely related to [Solo and Couple](couple.md), in that `⋈` is equivalent to `≍○<` and `≍` is equivalent to `>∘⋈`. However, the result of `⋈` is always a list (rank 1) while Solo or Couple return an array of rank at least 1.
+Enlist and Pair are closely related to [Solo and Couple](couple.md), in that `⋈` is equivalent to `≍○<` and `≍` is equivalent to `>∘⋈`. However, the result of `⋈` is always a list (rank 1) while Solo or Couple return an array of rank at least 1.
"abc" ≍ "def"
@@ -42,7 +42,7 @@ And the arguments to Couple must have the same shape, while Enlist takes any two
"abc" ⋈ "defg"
-The difference is that Couple treats the arguments as cells, and adds a dimension, while Pair treats them as elements, adding a layer of depth. Couple is a "flat" version of Pair, much like Cells (`˘`) is a flat version of Each (`¨`). Pair is more versatile, but—precisely because of its restrictions—Couple may allow more powerful array operations on the result.
+The difference is that Couple treats the arguments as [cells](array.md#cell), and adds a dimension, while Pair treats them as elements, adding a layer of depth. Couple is a "flat" version of Pair, much like [Cells](rank.md#cells) (`˘`) is a flat version of [Each](map.md#each) (`¨`). Pair is more versatile, but—precisely because of its restrictions—Couple may allow more powerful array operations on the result.
## Fill element