mirror of https://github.com/rwf2/Rocket.git
Replace 'above' with 'below' in route parse error message.
This commit is contained in:
parent
b0fc8b31f6
commit
4862dd2161
|
@ -42,7 +42,7 @@ impl RouteParams {
|
|||
) -> RouteParams {
|
||||
let function = Function::from(annotated).unwrap_or_else(|item_sp| {
|
||||
ecx.span_err(sp, "this attribute can only be used on functions...");
|
||||
ecx.span_fatal(item_sp, "...but was applied to the item above.");
|
||||
ecx.span_fatal(item_sp, "...but was applied to the item below.");
|
||||
});
|
||||
|
||||
let meta_items = meta_item.meta_item_list().unwrap_or_else(|| {
|
||||
|
|
Loading…
Reference in New Issue