Skip to content

Commit 9925d9b

Browse files
committed
Fix indentation issue
1 parent 38d98a1 commit 9925d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/html/format.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ impl fmt::Display for clean::GenericArgs {
307307
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
308308
match *self {
309309
clean::GenericArgs::AngleBracketed { ref args, ref bindings } => {
310-
if !args.is_empty() || !bindings.is_empty() {
310+
if !args.is_empty() || !bindings.is_empty() {
311311
if f.alternate() {
312312
f.write_str("<")?;
313313
} else {

0 commit comments

Comments
 (0)