Fix @DateTime.Now reference not resolving (#4521)

xref resolution ends with a white space. 
This fix also fixed the broken localized content [here](https://docs.microsoft.com/zh-cn/aspnet/core/getting-started) due to bad xref resolution.
pull/4482/merge
Yufei Huang 2017-10-09 18:31:07 -05:00 committed by Rick Anderson
parent 1e0234f818
commit d56f36805c
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ uid: getting-started
5. Browse to [http://localhost:5000](http://localhost:5000)
6. Open *Pages/About.cshtml* and modify the page to display the message "Hello, world! The time on the server is @DateTime.Now":
6. Open *Pages/About.cshtml* and modify the page to display the message "Hello, world! The time on the server is @DateTime.Now ":
[!code-html[Main](getting-started/sample/getting-started/about.cshtml?highlight=9&range=1-9)]