Skip to content

Commit 7cd4ec1

Browse files
committed
Update README.md with new version
1 parent 6244275 commit 7cd4ec1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ Grapevine is available on [NuGet.org](https://www.nuget.org/packages/Grapevine/)
1010

1111
Powershell:
1212
```powershell
13-
Install-Package Grapevine -Version 5.0.0-rc.9
13+
Install-Package Grapevine -Version 5.0.0-rc.10
1414
```
1515

1616
.NET CLI
1717
```cmd
18-
> dotnet add package Grapevine --version 5.0.0-rc.9
18+
> dotnet add package Grapevine --version 5.0.0-rc.10
1919
```
2020

2121
## Usage
2222

2323
Grapevine is easy to get started with.
2424

25-
Create a simple route. This is the code that you want to run when a request comes in using the specificed HTTP verb and path. **Route methods must be [asynchronous](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/)!**
25+
Create a simple route. This is the code that you want to run when a request comes in using the specified HTTP verb and path. **Route methods must be [asynchronous](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/)!**
2626

2727
```csharp
2828
[RestResource]
@@ -48,7 +48,7 @@ using (var server = RestServerBuilder.UseDefaults().Build())
4848
}
4949
```
5050

51-
Open your prefered browser and go to `http://localhost:1234/api/test`. You should see the following output in your browser:
51+
Open your preferred browser and go to `http://localhost:1234/api/test`. You should see the following output in your browser:
5252

5353
```
5454
Successfully hit the test route!

0 commit comments

Comments
 (0)