From 547bd68389f4864fd1435b02b5a81427ceb42429 Mon Sep 17 00:00:00 2001 From: Jake Lishman Date: Tue, 27 Aug 2024 20:21:32 +0100 Subject: [PATCH] Tweak documentation wording Co-authored-by: Kevin Hartman --- crates/circuit/src/interner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/circuit/src/interner.rs b/crates/circuit/src/interner.rs index e6b0f4dfff12..d359e7b03024 100644 --- a/crates/circuit/src/interner.rs +++ b/crates/circuit/src/interner.rs @@ -75,7 +75,7 @@ where /// itself (the `Interned` type), rather than raw references; the `Interned` type is narrower than a /// true reference. /// -/// This can only be implemented for owned types that implement `Default`, so that the convenience +/// This is only implemented for owned types that implement `Default`, so that the convenience /// method `Interner::get_default` can work reliably and correctly; the "default" index needs to be /// guaranteed to be reserved and present for safety. ///