Reword HELP.md list of guides

This commit is contained in:
Brian Clozel
2019-03-11 16:27:25 +01:00
parent 2647c19d5b
commit 8263920e74
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
### Guides
The following guides illustrates how to use certain features concretely:
The following guides illustrate how to use some features concretely:
{{#items}}
* [{{description}}]({{href}})

View File

@@ -62,7 +62,7 @@ class HelpDocumentProjectContributorTests {
.addGuideLink("https://test2.example.com", "test2");
List<String> lines = generateDocument(document);
assertThat(lines).containsExactly("# Getting Started", "", "### Guides",
"The following guides illustrates how to use certain features concretely:",
"The following guides illustrate how to use some features concretely:",
"", "* [test](https://test.example.com)",
"* [test2](https://test2.example.com)", "");
}
@@ -108,7 +108,7 @@ class HelpDocumentProjectContributorTests {
.println(String.format("# My test section%n%n * Test")));
List<String> lines = generateDocument(document);
assertThat(lines).containsExactly("# Getting Started", "", "### Guides",
"The following guides illustrates how to use certain features concretely:",
"The following guides illustrate how to use some features concretely:",
"", "* [test](https://test.example.com)", "", "# My test section", "",
" * Test");
}

View File

@@ -63,7 +63,7 @@ class HelpDocumentTests {
assertThat(out).contains("# Getting Started", "", "### Reference Documentation",
"For further reference, please consider the following sections:", "",
"* [Doc](https://example.com/doc)", "", "### Guides",
"The following guides illustrates how to use certain features concretely:",
"The following guides illustrate how to use some features concretely:",
"", "* [Guide 1](https://example.com/guide-1)",
"* [Guide 2](https://example.com/guide-2)", "");
}