diff --git a/docs/_operations-table.mdx b/docs/_operations-table.mdx
index 2c26e90..708f0ff 100644
--- a/docs/_operations-table.mdx
+++ b/docs/_operations-table.mdx
@@ -12,7 +12,7 @@
| [Comparisons](/nada-by-example/comparison) | `x < y`,
`x <= y`,
`x > y`,
`x >= y` | `P ← P < P`,
`S ← P < S`,
`S ← S < P`,
`S ← S < S` |
| [Ternary](/nada-by-example/if-else) _"if else"_
(public condition) | `cond.if_else(x, y)` | `P ← P.if_else(P, P)`,
`S ← P.if_else(P, S)`,
`S ← P.if_else(S, P)`,
`S ← P.if_else(S, S)` |
| [Ternary](/nada-by-example/if-else) _"if else"_
(secret condition) | `cond.if_else(x, y)` | `S ← S.if_else(P, P)`,
`S ← S.if_else(P, S)`,
`S ← S.if_else(S, P)`,
`S ← S.if_else(S, S)` |
-| [Reveal](/nada-by-example/reveal)
(convert a private
value into a public value) | `x.reveal()` | `P ← S.reveal()` |
+| [Reveal](/nada-by-example/reveal)
(convert a private
value into a public value) | `x.to_public()` | `P ← S.to_public()` |
| [Equality](/nada-by-example/equality) | `x == y` | `S ← S == S`,
`S ← S == P`,
`S ← P == S`,
`P ← P == P` |
| [Public Output Equality](/nada-by-example/equality)
(publicly output if two secrets are equal) | `x.public_equals(y)` | `P ← S.public_equals(S)` |
| [Not](/nada-by-example/not) | `~bool` | `S ← ~S`,
`P ← ~P` |
diff --git a/docs/nada-numpy-array-functions.md b/docs/nada-numpy-array-functions.md
index c822413..396611d 100644
--- a/docs/nada-numpy-array-functions.md
+++ b/docs/nada-numpy-array-functions.md
@@ -12,7 +12,7 @@
| `dot` | `other: NadaArray` | Compute the dot product between two `NadaArray` objects. |
| `hstack` | `other: NadaArray` | Horizontally stack two `NadaArray` objects. |
| `vstack` | `other: NadaArray` | Vertically stack two `NadaArray` objects. |
-| `reveal` | | Reveal the elements of the array. |
+| `to_public` | | Reveal the elements of the array. |
| `apply` | `func: Callable[[Any], Any]` | Apply a Python function element-wise to the array. |
| `mean` | `axis=None, dtype=None, out=None` | Compute the mean along the specified axis. |
| `output` | `party: Party, prefix: str` | Generate a list of Output objects for each element in the `NadaArray`. |