From 194ad97f94ffdf6d74f993803dbf43e6529bac08 Mon Sep 17 00:00:00 2001 From: Steven Volckaert Date: Tue, 9 May 2017 21:49:28 +0200 Subject: [PATCH] Updating line 78: Correcting French punctuation. (#3331) In French, a space is required both before and after all two- (or more) part punctuation marks and symbols, including the exclamation mark "!". See https://www.thoughtco.com/how-to-use-french-punctuation-4086509 for more information. --- aspnetcore/fundamentals/localization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/localization.md b/aspnetcore/fundamentals/localization.md index d6c737b0d7..28c2a79345 100644 --- a/aspnetcore/fundamentals/localization.md +++ b/aspnetcore/fundamentals/localization.md @@ -75,7 +75,7 @@ A French resource file could contain the following: | Key | Value | | ----- | ------ | -| `Hello {0}!` | `Bonjour {0}!` | +| `Hello {0}!` | `Bonjour {0} ! ` | The rendered view would contain the HTML markup from the resource file.