From 4a8bdfa657155556af920cc11a18d120dfa4dc97 Mon Sep 17 00:00:00 2001 From: Kevin Coorens Date: Fri, 26 Feb 2021 18:12:16 +0100 Subject: [PATCH] Update assignment.md small typo --- exercises/events/FileSystemExercise/assignment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/events/FileSystemExercise/assignment.md b/exercises/events/FileSystemExercise/assignment.md index 5968400..fe13fbb 100644 --- a/exercises/events/FileSystemExercise/assignment.md +++ b/exercises/events/FileSystemExercise/assignment.md @@ -60,7 +60,7 @@ This count should be accessible through a `ChangeCount` property. For example, say I instantiate a `ChangedFilesCounter` as follows: ```csharp -var cfc = new ChangedFileCounter(fileSystem); +var cfc = new ChangedFilesCounter(fileSystem); ``` Say the following changes are then made: