From b842a70ec3b8c1c9a01012ac166e413756ccc6b5 Mon Sep 17 00:00:00 2001 From: imaqtkatt <135721694+imaqtkatt@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:12:45 -0300 Subject: [PATCH] Update README.md Co-authored-by: Nicolas Abril --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9ade3ce8..af4ea98eb 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ A let term binds some value to the next term, in this case `(* result 2)`: let result = (+ 1 2); (* result 2) ``` -The use term inline clones of some value to the next term: +The `use` term inlines clones of some value to the next term: ```rs use result = (+ 1 2); (* result result)