diff --git a/src/spectest/src/lib.rs b/src/spectest/src/lib.rs index 6a2e3e0..d9473ec 100644 --- a/src/spectest/src/lib.rs +++ b/src/spectest/src/lib.rs @@ -101,13 +101,13 @@ type Token<'input> = (Event<'input>, Range); type Tokens<'a, 'input> = &'a mut [Token<'input>]; /// Project the `event` component a `token`. -#[inline(always = true)] +#[inline(always)] fn event<'a, 'input>(token: &'a Token<'input>) -> &'a Event<'input> { &token.0 } /// Project the `span` component a `token`. -#[inline(always = true)] +#[inline(always)] fn span<'a>(token: &'a Token<'_>) -> &'a Range { &token.1 }