Skip to content

Commit 51788a8

Browse files
authored
fix: remove duplication of the word "accidentally" (feature-sliced#783)
1 parent df5d303 commit 51788a8

File tree

1 file changed

+1
-1
lines changed
  • i18n/en/docusaurus-plugin-content-docs/current/reference

1 file changed

+1
-1
lines changed

i18n/en/docusaurus-plugin-content-docs/current/reference/public-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export * from "./ui/Comment"; // 👎 don't try this at home
2929
export * from "./model/comments"; // 💩 this is bad practice
3030
```
3131

32-
This hurts the discoverability of a slice because you can't easily tell what the interface of this slice is. Not knowing the interface means that you have to dig deep into the code of a slice to understand how to integrate it. Another problem is that you might accidentally expose the module internals accidentally, which will make refactoring difficult if someone starts depending on them.
32+
This hurts the discoverability of a slice because you can't easily tell what the interface of this slice is. Not knowing the interface means that you have to dig deep into the code of a slice to understand how to integrate it. Another problem is that you might accidentally expose the module internals, which will make refactoring difficult if someone starts depending on them.
3333

3434
## Public API for cross-imports {#public-api-for-cross-imports}
3535

0 commit comments

Comments
 (0)