From d56f36805ce70470775da58db63c0965d65660d3 Mon Sep 17 00:00:00 2001 From: Yufei Huang Date: Mon, 9 Oct 2017 18:31:07 -0500 Subject: [PATCH] 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. --- aspnetcore/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/getting-started.md b/aspnetcore/getting-started.md index 1ac40de2b3..0c519e2d10 100644 --- a/aspnetcore/getting-started.md +++ b/aspnetcore/getting-started.md @@ -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)]