forked from M-Labs/nac3
core: fix typo in fmt::Display of TypeVarId
This commit is contained in:
parent
f026b48e2a
commit
f523e26227
|
@ -33,7 +33,7 @@ pub type IndexMapping<K, V = Type> = IndexMap<K, V>;
|
||||||
pub struct TypeVarId(pub u32);
|
pub struct TypeVarId(pub u32);
|
||||||
|
|
||||||
impl fmt::Display for TypeVarId {
|
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 {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
f.write_fmt(format_args!("{}", self.0))
|
f.write_fmt(format_args!("{}", self.0))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue