From 41a80be6ba5e9723a0e1a5d338f83219ef91e44f Mon Sep 17 00:00:00 2001 From: Antonio Yang Date: Wed, 13 Nov 2024 17:52:35 +0800 Subject: [PATCH] fix links of control flow --- book/src/move-basics/control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/move-basics/control-flow.md b/book/src/move-basics/control-flow.md index 627a6b43..4ddd3af7 100644 --- a/book/src/move-basics/control-flow.md +++ b/book/src/move-basics/control-flow.md @@ -27,7 +27,7 @@ control flow statements (explained in detail below): code - [`loop` and `while` loops](#repeating-statements-with-loops) - repeating a block of code - [`break` and `continue` statements](#exiting-a-loop-early) - exiting a loop early -- [`return`](#return) statement - exiting a function early +- [`return`](#early-return) statement - exiting a function early ## Conditional Statements