Skip to content

Commit be9b368

Browse files
authored
update input file names for case sensitive file systems (#1299)
Fixing a customer reported issue.
1 parent da9846a commit be9b368

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/csharp/tutorials/console-teleprompter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ a @System.IO.StreamReader object.
147147
Now, let’s fill in the code to read the file in the `Main` method:
148148

149149
```cs
150-
var lines = ReadFrom("SampleQuotes.txt");
150+
var lines = ReadFrom("sampleQuotes.txt");
151151
foreach (var line in lines)
152152
{
153153
Console.WriteLine(line);
@@ -244,7 +244,7 @@ Add this method to your `Program` class (it’s taken from the body of your
244244
```cs
245245
private static async Task ShowTeleprompter()
246246
{
247-
var words = ReadFrom("SampleQuotes.txt");
247+
var words = ReadFrom("sampleQuotes.txt");
248248
foreach (var line in words)
249249
{
250250
Console.Write(line);
@@ -384,7 +384,7 @@ use the `config` object for the delay:
384384
```cs
385385
private static async Task ShowTeleprompter(TelePrompterConfig config)
386386
{
387-
var words = ReadFrom("SampleQuotes.txt");
387+
var words = ReadFrom("sampleQuotes.txt");
388388
foreach (var line in words)
389389
{
390390
Console.Write(line);

0 commit comments

Comments
 (0)