add 'u' to one other place it was missing

This commit is contained in:
Niko Matsakis 2011-10-07 11:04:54 -07:00 committed by Brian Anderson
parent f304c1bee5
commit e9569371f7

View file

@ -280,6 +280,7 @@ fn item_family_to_str(fam: u8) -> str {
alt fam as char {
'c' { ret "const"; }
'f' { ret "fn"; }
'u' { ret "unsafe fn"; }
'p' { ret "pure fn"; }
'F' { ret "native fn"; }
'y' { ret "type"; }