Skip to content

Commit 1b8db0d

Browse files
committed
Grammar: Pluralize 'Sometime', past-tense words
1 parent 1d16ba7 commit 1b8db0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/patterns/after-handle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ head:
1717
# After Handle
1818
**After Handle** can transform a response into a new response.
1919

20-
**After Handle** is like `transform`, but instead of transforming incoming request, it is use to transform a response returned from main handler.
20+
**After Handle** is like `transform`, but instead of transforming the incoming request, it is used to transform a response returned from main handler.
2121

2222
Allowing you to remap the returned value into a new value or force the value to early return.
2323

@@ -42,7 +42,7 @@ new Elysia()
4242
The above code will return `3` as a result.
4343

4444
## Early return
45-
Sometime, you may want to prevent the on-going chain of **afterHandle**, just like **beforeHandle**, if you return the value in a **afterHandle** function, it will be an early return and skip the rest of **afterHandle**
45+
Sometimes you may want to prevent the on-going chain of **afterHandle**, just like **beforeHandle**. If you return the value in a **afterHandle** function, it will be an early return and skip the rest of **afterHandle**
4646

4747
```typescript
4848
import { Elysia } from 'elysia'

0 commit comments

Comments
 (0)