Skip to content
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

Fix for two typos and unneeded hyphenation in two instances. #200

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ Before proceeding with feature coding, make sure your development environment is

::: zone pivot="programming-language-csharp"

To add package dependencies from the command-line use the `dotnet` command:
To add package dependencies from the command line use the `dotnet` command:

```powershell
dotnet add package Azure.Identity
@@ -256,7 +256,7 @@ def get_filepath_for_filename(filename: str) -> str:

::: zone-end

Let's declare the the three content-files described in the previous [Configuration](#configuration) section:
Let's declare the the three content files described in the previous [Configuration](#configuration) section:

::: zone pivot="programming-language-csharp"

@@ -382,7 +382,7 @@ try
bool isComplete = false;
do
{
// Processing occurrs here
// Processing occurs here
} while (!isComplete);
}
finally
@@ -425,7 +425,7 @@ finally:

::: zone-end

Now let's capture user input within the previous loop. In this case, empty input will be ignored and the term `EXIT` will signal that the conversation is completed. Valid nput will be added to the _Assistant Thread_ as a _User_ message.
Now let's capture user input within the previous loop. In this case, empty input will be ignored and the term `EXIT` will signal that the conversation is completed. Valid input will be added to the _Assistant Thread_ as a _User_ message.

::: zone pivot="programming-language-csharp"
```csharp