summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zjit/src/hir.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/zjit/src/hir.rs b/zjit/src/hir.rs
index be02d0915d..bac088f2c1 100644
--- a/zjit/src/hir.rs
+++ b/zjit/src/hir.rs
@@ -785,7 +785,8 @@ impl Function {
/// the union-find table (to find the current most-optimized version of this instruction). See
/// [`UnionFind`] for more.
///
- /// Use for pattern matching over instructions in a union-find-safe way. For example:
+ /// This is _the_ function for reading [`Insn`]. Use frequently. Example:
+ ///
/// ```rust
/// match func.find(insn_id) {
/// IfTrue { val, target } if func.is_truthy(val) => {