Skip to content

Commit 68230b0

Browse files
committed
Fix grammar error.
1 parent 8b859a5 commit 68230b0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

runtime/src/test/fusion/modules/documentation.fusion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: Apache-2.0
33

44
(module documentation "/fusion"
5-
"These is the module body doc."
5+
"This is the module body doc."
66

77
(require "/fusion/private/syntax")
88

runtime/src/test/java/dev/ionfusion/fusion/DocumentationAccessTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ public void docForModule()
7171
{
7272
ModuleDocs doc = moduleDocs("/documentation");
7373

74-
assertThat(doc.getOneLiner(), is("These is the module body doc."));
75-
assertThat(doc.getOverview(), is("These is the module body doc."));
74+
assertThat(doc.getOneLiner(), is("This is the module body doc."));
75+
assertThat(doc.getOverview(), is("This is the module body doc."));
7676

7777
assertThat(doc.getProvidedNames(),
7878
containsInAnyOrder("const", "macro", "proc"));

0 commit comments

Comments
 (0)