Skip to content

Commit

Permalink
Minor change in readme text (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilleBo authored Jan 15, 2022
1 parent dc06ea5 commit b44527f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ var result = await compiler.CompileFilesInMemoryAsync(@"/path/HelloWorld.cs");
.Build();
```

Will generate
This code will generate following code:

```c#
using System;
Expand Down Expand Up @@ -171,7 +171,7 @@ namespace Models
.Build();
```

Will generate
This code will generate following code:

```c#
using System;
Expand Down Expand Up @@ -222,7 +222,7 @@ namespace Models
.Build();
```

Will generate
This code will generate following code:

```c#
using System;
Expand Down Expand Up @@ -277,7 +277,7 @@ public class Cat
.Build();
```

Will generate
This code will generate following code:

```c#
using System;
Expand All @@ -304,7 +304,7 @@ public record Cat(int Age);
.Build();
```

Will generate
This code will generate following code:

```c#
using System;
Expand Down

0 comments on commit b44527f

Please sign in to comment.