Skip to content

Fix a couple of typos #10218

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 2 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/ide/how-to-create-multi-project-templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ This example uses the **SolutionFolder** element to divide the projects into two

## Example with project references

This example shows how to add project references to a multi-project template and is essentialy an extension of the [multi-project template](#create-multi-project-templates) example.
This example shows how to add project references to a multi-project template and is essentially an extension of the [multi-project template](#create-multi-project-templates) example.

In this example the solution contains two projects, **MultiProject.Client** and **MultiProject.Shared**. The project **MultiProject.Client** references **MultiProject.Shared**.

Expand Down Expand Up @@ -233,7 +233,7 @@ The *MultiProject.Client\MyTemplate.vstemplate* might look something like the fo
</VSTemplate>
```

The *MultiProject.Client\MultiProject.Client.csproj* might look something like the follwoing. Please note that the attribute **Include** of the *ProjectReference* uses the template variable [\$ext_safeprojectname\$](./template-parameters.md#reserved-template-parameters)
The *MultiProject.Client\MultiProject.Client.csproj* might look something like the following. Please note that the attribute **Include** of the *ProjectReference* uses the template variable [\$ext_safeprojectname\$](./template-parameters.md#reserved-template-parameters)

```xml
<Project>
Expand Down
2 changes: 1 addition & 1 deletion docs/test/intellitest-manual/exploration-bounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void ParameterizedTest(int n)
<a name="maxruns"></a>
## MaxRuns

Th emaximum number of runs that IntelliTest will try during the exploration of a test.
The maximum number of runs that IntelliTest will try during the exploration of a test.

The motivation behind this exploration bound is that any code which contains loops or recursion might have an infinite number of execution paths, and thus IntelliTest needs to be limited during [input generation](input-generation.md).

Expand Down