Skip to content

Commit

Permalink
Merge pull request backstage#8142 from gotson/patch-1
Browse files Browse the repository at this point in the history
[Doc] fix typos in todo plugin Readme
  • Loading branch information
freben authored Nov 18, 2021
2 parents 153eac4 + 6a2cc4c commit fb03c47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/todo-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function main() {
// ...
const todoEnv = useHotMemoize(module, () => createEnv('todo'));
// ...
apiRouter.use('/todo', await kafka(todoEnv));
apiRouter.use('/todo', await todo(todoEnv));
```
## Scanned Files
Expand Down
2 changes: 1 addition & 1 deletion plugins/todo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async function main() {
// ...
const todoEnv = useHotMemoize(module, () => createEnv('todo'));
// ...
apiRouter.use('/todo', await kafka(todoEnv));
apiRouter.use('/todo', await todo(todoEnv));
```
3. Add the plugin as a tab to your service entities:
Expand Down

0 comments on commit fb03c47

Please sign in to comment.