1
Fork 0

Remove extern mod foo (name="bar") syntax, closes #9543

This commit is contained in:
Florian Hahn 2013-11-26 23:54:32 +01:00
parent 51ace54597
commit f42a36cded
17 changed files with 29 additions and 32 deletions

View file

@ -995,7 +995,7 @@ fn item_module(w: &mut Writer, cx: &Context,
clean::ViewItemItem(ref item) => {
match item.inner {
clean::ExternMod(ref name, ref src, _, _) => {
clean::ExternMod(ref name, ref src, _) => {
write!(w, "<tr><td><code>extern mod {}",
name.as_slice());
match *src {