Skip to content

Commit

Permalink
fix typo (#1430)
Browse files Browse the repository at this point in the history
fix typo
iseFeatureC => useFeatureC
  • Loading branch information
benben6515 committed Jan 12, 2022
1 parent 1bc10c0 commit 32a95c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/reusability/composables.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ import { useFeatureC } from './featureC.js'
const { foo, bar } = useFeatureA()
const { baz } = useFeatureB(foo)
const { qux } = iseFeatureC(baz)
const { qux } = useFeatureC(baz)
</script>
```

Expand Down

0 comments on commit 32a95c4

Please sign in to comment.