Fix a test target

This commit is contained in:
topecongiro 2017-11-29 17:29:06 +09:00
parent 4720462e67
commit 4436508712

View File

@ -224,9 +224,12 @@ impl Foo {
if attr.check_name("doc") {
if let Some(mi) = attr.meta() {
if let Some(value) = mi.value_str() {
doc_strings.push(
DocFragment::Include(line, attr.span, filename, contents),
);
doc_strings.push(DocFragment::Include(
line,
attr.span,
filename,
contents,
));
}
}
}