Skip to content

Commit 4436508

Browse files
committed
Fix a test target
1 parent 4720462 commit 4436508

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/target/chains.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,12 @@ impl Foo {
224224
if attr.check_name("doc") {
225225
if let Some(mi) = attr.meta() {
226226
if let Some(value) = mi.value_str() {
227-
doc_strings.push(
228-
DocFragment::Include(line, attr.span, filename, contents),
229-
);
227+
doc_strings.push(DocFragment::Include(
228+
line,
229+
attr.span,
230+
filename,
231+
contents,
232+
));
230233
}
231234
}
232235
}

0 commit comments

Comments
 (0)