Skip to content

Commit 2b3386b

Browse files
committed
chore: fix some markdown style issues
1 parent a8f6530 commit 2b3386b

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/2e777fa545c94767acccd6345b1ed9b7)](https://app.codacy.com/gh/System-IO-Abstractions/System.IO.Abstractions?utm_source=github.com&utm_medium=referral&utm_content=System-IO-Abstractions/System.IO.Abstractions&utm_campaign=Badge_Grade_Dashboard)
44
[![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com/)
55

6-
### Just like `System.Web.Abstractions`, but for `System.IO`. Yay for testable IO access!
6+
> ***Just like `System.Web.Abstractions`, but for `System.IO`. Yay for testable IO access!***
77
88
At the core of the library is `IFileSystem` and `FileSystem`. Instead of calling methods like `File.ReadAllText` directly, use `IFileSystem.File.ReadAllText`. We have exactly the same API, except that ours is injectable and testable.
99

10-
dotnet add package System.IO.Abstractions
10+
```shell
11+
dotnet add package System.IO.Abstractions
12+
```
1113

1214
```csharp
1315
public class MyComponent
@@ -40,7 +42,9 @@ public class MyComponent
4042

4143
The library also ships with a series of test helpers to save you from having to mock out every call, for basic scenarios. They are not a complete copy of a real-life file system, but they'll get you most of the way there.
4244

43-
dotnet add package System.IO.Abstractions.TestingHelpers
45+
```shell
46+
dotnet add package System.IO.Abstractions.TestingHelpers
47+
```
4448

4549
```csharp
4650
[Test]

0 commit comments

Comments
 (0)