Skip to content

Commit

Permalink
Fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-light authored Jan 8, 2023
1 parent 3dfc978 commit 53e1365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ await
// Scan all `*.cs` files in the specified `input` path.
new DirectoryScannerPipe(input, "*.cs")

// Parse each files into Roslyn `SyntaxTree`.
// Parse each file into Roslyn `SyntaxTree`.
.ThenForAll(new SyntaxTreeParserPipe())

// Parse `SyntaxTree` into `Doc`.
// Parse each `SyntaxTree` into `Doc`.
.ThenForAll(new DocumentParserPipe())

// Merge multiple docs into single doc.
Expand Down

0 comments on commit 53e1365

Please sign in to comment.