From 7e34341a50f083e255e701085955056336cf335d Mon Sep 17 00:00:00 2001 From: Scott Addie Date: Wed, 21 Jun 2017 15:47:42 -0500 Subject: [PATCH] Fix misplaced apostrophe in Razor doc --- aspnetcore/mvc/views/razor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/views/razor.md b/aspnetcore/mvc/views/razor.md index fd970b53c4..6722aad496 100644 --- a/aspnetcore/mvc/views/razor.md +++ b/aspnetcore/mvc/views/razor.md @@ -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

Last week this time: @(DateTime.Now - TimeSpan.FromDays(7))