fixup add missing question mark

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-06-11 17:12:33 +02:00
parent 22f4d076e2
commit 841799d882

View File

@ -22,7 +22,7 @@ pub fn router_macro(input: TokenStream) -> Result<TokenStream, Error> {
let router_name = need_ident(&mut input)?;
match_colon(&mut input)?;
match_keyword(&mut input, "Router");
match_keyword(&mut input, "Router")?;
match_punct(&mut input, '<')?;
let body_type = need_ident(&mut input)?;
match_punct(&mut input, '>')?;