File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ These files can be found in the component book repository in the [`wit` director
53
53
These files define:
54
54
* A world ` adder ` that exports the ` add ` interface. Again, components such as the calculator can call it when
55
55
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
57
57
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
60
60
the operations that can be involved in a calculation. In this tutorial, the only operation is ` add ` .
61
61
* A world ` app ` describing the "primary" app component, which imports the ` calculate ` interface.
62
62
This component will take in command line arguments and pass them to the ` eval-expression ` function
You can’t perform that action at this time.
0 commit comments