Fix misplaced apostrophe in Razor doc

pull/3549/head
Scott Addie 2017-06-21 15:47:42 -05:00
parent 9e9e1d7c7e
commit 7e34341a50
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ With the exception of the C# `await` keyword implicit expressions must not conta
## Explicit Razor expressions
Explicit Razor expressions consists of an @ symbol with balanced parenthesis. For example, to render last weeks time:
Explicit Razor expressions consists of an @ symbol with balanced parenthesis. For example, to render last week's time:
```html
<p>Last week this time: @(DateTime.Now - TimeSpan.FromDays(7))</p>