Skip to content

Commit 8527c6f

Browse files
authored
Update tutorial.md to improve clarity
1 parent b1b0e61 commit 8527c6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

component-model/src/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ These files can be found in the component book repository in the [`wit` director
5353
These files define:
5454
* A world `adder` that exports the `add` interface. Again, components such as the calculator can call it when
5555
they need to add numbers.
56-
* A world describing the calculator component. This world exports the calculator interface, meaning
56+
* A world `calculator` describing the calculator component. This world exports the calculator interface, meaning
5757
that other components can call it to perform calculations. It imports the operation interfaces
58-
(such as "add"), meaning it relies on other components to perform those operations.
59-
* An interface `calculate` that contains an evaluate function, and an enum that delineates
58+
(such as `add`), meaning it relies on other components to perform those operations.
59+
* An interface `calculate` that contains an evaluate function and an enum that delineates
6060
the operations that can be involved in a calculation. In this tutorial, the only operation is `add`.
6161
* A world `app` describing the "primary" app component, which imports the `calculate` interface.
6262
This component will take in command line arguments and pass them to the `eval-expression` function

0 commit comments

Comments
 (0)