auto merge of #5483 : pcwalton/rust/static-syntax, r=graydon

r? @nikomatsakis
This commit is contained in:
bors
2013-03-22 11:21:48 -07:00
14 changed files with 60 additions and 57 deletions

View File

@@ -1755,7 +1755,7 @@ pub fn print_bounds(s: @ps, bounds: @OptVec<ast::TyParamBound>) {
match *bound {
TraitTyParamBound(ty) => print_type(s, ty),
RegionTyParamBound => word(s.s, ~"&static"),
RegionTyParamBound => word(s.s, ~"'static"),
}
}
}