Skip to content

Commit e093594

Browse files
committed
🔧
1 parent 720b25e commit e093594

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/nwire/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ function createAppContext() {
9191

9292
export { createAppContext }
9393

94-
// Note: you can also try to omit the type and let TypeScript infer it for you. Using this approach will avoid having to modify multiple places to introduce/remove dependencies.
94+
// Note: you can also try to omit the type and let TypeScript infer it for
95+
// you. Using this approach will avoid having to modify multiple places to
96+
// introduce/remove dependencies.
9597

9698
function createAppContext() {
9799
return Container.new()
@@ -102,7 +104,7 @@ function createAppContext() {
102104
.context()
103105
}
104106

105-
type AppContext = typeof ReturnType<createAppContext>
107+
type AppContext = ReturnType<typeof createAppContext>
106108

107109
export { createAppContext, AppContext }
108110

0 commit comments

Comments
 (0)