diff --git a/nac3core/src/typecheck/typedef/mod.rs b/nac3core/src/typecheck/typedef/mod.rs index 855074b..6489817 100644 --- a/nac3core/src/typecheck/typedef/mod.rs +++ b/nac3core/src/typecheck/typedef/mod.rs @@ -33,7 +33,7 @@ pub type IndexMapping = IndexMap; pub struct TypeVarId(pub u32); impl fmt::Display for TypeVarId { - // NOTE: Must output the string fo the ID value. Certain unit tests rely on string comparisons. + // NOTE: Must output the string of the ID value. Certain unit tests rely on string comparisons. fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.write_fmt(format_args!("{}", self.0)) }