Remove unnecessary type argument to Alias (#549)

This commit is contained in:
Casey Rodarmor 2019-11-21 10:14:55 -06:00 committed by GitHub
parent 4f08bb4d77
commit ba93c5e6af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ use crate::common::*;
pub(crate) struct Justfile<'src> {
pub(crate) recipes: Table<'src, Rc<Recipe<'src>>>,
pub(crate) assignments: Table<'src, Assignment<'src>>,
pub(crate) aliases: Table<'src, Alias<'src, Rc<Recipe<'src>>>>,
pub(crate) aliases: Table<'src, Alias<'src>>,
pub(crate) settings: Settings<'src>,
pub(crate) warnings: Vec<Warning<'src>>,
}