Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Erhardt <eric.erhardt@microsoft.com>2017-02-01 01:27:33 +0300
committerGitHub <noreply@github.com>2017-02-01 01:27:33 +0300
commiteb79a789b857ada1608276ee3aaf8133937ad206 (patch)
tree0909c64830f102a3191f97b62f4e10bdd7d02bad /Documentation
parent690586a35e9f973237c8fc53f6df23b3bf58d6cb (diff)
Small fixes to dogfooding.md
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/project-docs/dogfooding.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/project-docs/dogfooding.md b/Documentation/project-docs/dogfooding.md
index 039bc8f3dd..3ef8535093 100644
--- a/Documentation/project-docs/dogfooding.md
+++ b/Documentation/project-docs/dogfooding.md
@@ -13,7 +13,7 @@ sure to consult this document often.
1. Install CLI 2.0.0-alpha SDK
- [Win 64-bit Latest](https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-dev-win-x64.latest.exe)
- [macOS 64-bit Latest](https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-dev-osx-x64.latest.pkg)
- - [Others](https://github.com/dotnet/cli/blob/master/README.md)
+ - [Others](https://github.com/dotnet/cli/blob/master/README.md#installers-and-binaries)
## Setup the project
@@ -30,7 +30,7 @@ $ dotnet restore
## Consume the new build
-3. Edit your `Program.cs` to consume the new APIs, for example:
+Edit your `Program.cs` to consume the new APIs, for example:
```CSharp
using System;
@@ -47,7 +47,7 @@ class Program
}
```
-4. Run the bits:
+Run the bits:
```
$ dotnet run