File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ a @System.IO.StreamReader object.
147
147
Now, let’s fill in the code to read the file in the ` Main ` method:
148
148
149
149
``` cs
150
- var lines = ReadFrom (" SampleQuotes .txt" );
150
+ var lines = ReadFrom (" sampleQuotes .txt" );
151
151
foreach (var line in lines )
152
152
{
153
153
Console .WriteLine (line );
@@ -244,7 +244,7 @@ Add this method to your `Program` class (it’s taken from the body of your
244
244
``` cs
245
245
private static async Task ShowTeleprompter ()
246
246
{
247
- var words = ReadFrom (" SampleQuotes .txt" );
247
+ var words = ReadFrom (" sampleQuotes .txt" );
248
248
foreach (var line in words )
249
249
{
250
250
Console .Write (line );
@@ -384,7 +384,7 @@ use the `config` object for the delay:
384
384
``` cs
385
385
private static async Task ShowTeleprompter (TelePrompterConfig config )
386
386
{
387
- var words = ReadFrom (" SampleQuotes .txt" );
387
+ var words = ReadFrom (" sampleQuotes .txt" );
388
388
foreach (var line in words )
389
389
{
390
390
Console .Write (line );
You can’t perform that action at this time.
0 commit comments