From dd2e6db9edb5b475ccb31cb033a3d390207daddc Mon Sep 17 00:00:00 2001 From: Frans Bouma Date: Mon, 7 Mar 2016 10:40:27 +0100 Subject: [PATCH] Fixes #26 --- src/DocNet/SimpleNavigationElement.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DocNet/SimpleNavigationElement.cs b/src/DocNet/SimpleNavigationElement.cs index 2de247b..decc4ff 100644 --- a/src/DocNet/SimpleNavigationElement.cs +++ b/src/DocNet/SimpleNavigationElement.cs @@ -77,7 +77,7 @@ namespace Docnet // specified / existend. var defaultMarkdown = new StringBuilder(); defaultMarkdown.AppendFormat("# {0}{1}{1}", this.ParentContainer.Name, Environment.NewLine); - defaultMarkdown.AppendFormat("Please select one of the topic in this section:{0}{0}", Environment.NewLine); + defaultMarkdown.AppendFormat("Please select one of the topics in this section:{0}{0}", Environment.NewLine); foreach(var sibling in this.ParentContainer.Value) { if(sibling == this)