Rename description of primitive from "builtin type" into "primitive type"

This commit is contained in:
Guillaume Gomez 2023-03-24 14:47:56 +01:00
parent c78ebab258
commit 95926b2ce5

View File

@ -70,7 +70,7 @@ impl Res {
fn descr(self) -> &'static str {
match self {
Res::Def(kind, id) => ResolveRes::Def(kind, id).descr(),
Res::Primitive(_) => "builtin type",
Res::Primitive(_) => "primitive type",
}
}