Skip to content

Commit 4d562a0

Browse files
committed
Fix typo in designing-apis-for-extensibility.md
1 parent 5dadc38 commit 4d562a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/designing-apis-for-extensibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ One downside of implementation hiding is that it can make it difficult for
138138
users to do things you didn't intend for them to do with your API. You can
139139
always add more functionality on demand, but the delay can be a major nuissance
140140
for users. A compromise solution in the Haskell community is to provide a
141-
`.Internal` module for your project which exports non-quite-public components.
141+
`.Internal` module for your project which exports not-quite-public components.
142142
For example, in wai, the `Response` constructors are exposed in a
143143
`Network.Wai.Internal` module. Normally, users are supposed to use smart
144144
constructors like `responseFile`, but occasionally they'll want more

0 commit comments

Comments
 (0)