From b646f9b4e08175f7623f817cdcb4fe08a6413491 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 3 Jan 2019 08:25:02 -0800 Subject: [PATCH] Clarify a comment. --- lib/jit/src/namespace.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jit/src/namespace.rs b/lib/jit/src/namespace.rs index bd357c59ac..93e4dce619 100644 --- a/lib/jit/src/namespace.rs +++ b/lib/jit/src/namespace.rs @@ -12,7 +12,7 @@ use std::collections::HashMap; use std::string::String; use wasmtime_runtime::{Export, Instance}; -/// An opaque reference to an `Instance`. +/// An opaque reference to an `Instance` within a `Namespace`. #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] pub struct InstanceIndex(u32); entity_impl!(InstanceIndex, "instance");