From 74a865ce6d335b6eb5fa0694f9ae658ca56a529d Mon Sep 17 00:00:00 2001 From: Darius Wiles Date: Wed, 3 Mar 2021 15:09:32 -0800 Subject: [PATCH] Fix grammar "terminates" -> "terminate" --- src/fn/diverging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fn/diverging.md b/src/fn/diverging.md index 19cf27c080..52e1f819ae 100644 --- a/src/fn/diverging.md +++ b/src/fn/diverging.md @@ -66,4 +66,4 @@ fn main() { ``` It is also the return type of functions that loop forever (e.g. `loop {}`) like -network servers or functions that terminates the process (e.g. `exit()`). +network servers or functions that terminate the process (e.g. `exit()`).