Skip to content

Commit 65bdf9a

Browse files
committed
Fix blank spacing (#49033)
1 parent 402deb3 commit 65bdf9a

File tree

1 file changed

+1
-2
lines changed
  • docs/fundamentals/code-analysis/quality-rules/snippets/csharp/all-rules

1 file changed

+1
-2
lines changed

docs/fundamentals/code-analysis/quality-rules/snippets/csharp/all-rules/ca1844.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public override async Task WriteAsync(byte[] buffer, int offset, int count, Canc
3737
public override void Write(byte[] buffer, int offset, int count) => _innerStream.Write(buffer, offset, count);
3838
}
3939

40-
4140
// This class satisfies the rule.
4241
public class GoodStream : Stream
4342
{
@@ -84,4 +83,4 @@ public override async Task WriteAsync(byte[] buffer, int offset, int count, Canc
8483
public override void Write(byte[] buffer, int offset, int count) => _innerStream.Write(buffer, offset, count);
8584
}
8685
//</snippet1>
87-
}
86+
}

0 commit comments

Comments
 (0)