Make rustdoc use the [_; N]
syntax instead of [_, ..N]
This commit is contained in:
parent
a8a210b57e
commit
38a1bb13cd
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ impl fmt::String for clean::Type {
|
|||
}
|
||||
clean::FixedVector(ref t, ref s) => {
|
||||
primitive_link(f, clean::Slice,
|
||||
format!("[{}, ..{}]", **t, *s).as_slice())
|
||||
format!("[{}; {}]", **t, *s).as_slice())
|
||||
}
|
||||
clean::Bottom => f.write_str("!"),
|
||||
clean::RawPointer(m, ref t) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue