diff --git a/packages/documentation/copy/en/handbook-v2/More on Functions.md b/packages/documentation/copy/en/handbook-v2/More on Functions.md index 4d40edb5bada..ed29f1ddfea8 100644 --- a/packages/documentation/copy/en/handbook-v2/More on Functions.md +++ b/packages/documentation/copy/en/handbook-v2/More on Functions.md @@ -688,7 +688,7 @@ function fail(msg: string): never { ``` The `never` type represents values which are _never_ observed. -In a return type, this means that the function throws an exception or terminates execution of the program. +In a return type, this means that the function throws an exception, terminates execution of the program or takes literally forever to finish. `never` also appears when TypeScript determines there's nothing left in a union.