Skip to content

Commit cde5299

Browse files
committed
docs: clearer wording
1 parent 0d292b6 commit cde5299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/composition-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Before you can use the `useFind` and `useGet` composition functions, you'll need
1515

1616
The next few sections show various TypeScript interfaces, which are basically shorthand descriptions of the types of data that make up a variable. In this case, they're used to show the `options` object which can be passed to each of the composition api utilities. If this is your first time with interfaces, here's a quick primer as an alternative to reading the [TypeScript interface docs](https://www.typescriptlang.org/docs/handbook/interfaces.html):
1717

18-
- In the [first interface example](#options), below, `UseFindOptions` is the name of the interface, similar to naming any other variable. When using TypeScript, you can import and pass them around like variables.
18+
- In the [first interface example](#options), below, `UseFindOptions` is the name of the interface, similar to naming any other variable. When using TypeScript, you can import and pass interfaces around like variables.
1919
- Each line of the interface describes a property.
2020
- The part before the `:` is the name of the property.
2121
- The part after the `:` describes what type of variable it can be.

0 commit comments

Comments
 (0)