Skip to content

update input file names for case sensitive file systems #1299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 1, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/csharp/tutorials/console-teleprompter.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ a @System.IO.StreamReader object.
Now, let’s fill in the code to read the file in the `Main` method:

```cs
var lines = ReadFrom("SampleQuotes.txt");
var lines = ReadFrom("sampleQuotes.txt");
foreach (var line in lines)
{
Console.WriteLine(line);
Expand Down Expand Up @@ -244,7 +244,7 @@ Add this method to your `Program` class (it’s taken from the body of your
```cs
private static async Task ShowTeleprompter()
{
var words = ReadFrom("SampleQuotes.txt");
var words = ReadFrom("sampleQuotes.txt");
foreach (var line in words)
{
Console.Write(line);
Expand Down Expand Up @@ -384,7 +384,7 @@ use the `config` object for the delay:
```cs
private static async Task ShowTeleprompter(TelePrompterConfig config)
{
var words = ReadFrom("SampleQuotes.txt");
var words = ReadFrom("sampleQuotes.txt");
foreach (var line in words)
{
Console.Write(line);
Expand Down