From 96bbbb1ebfa3ba404b286a95cafb8858f73487e9 Mon Sep 17 00:00:00 2001 From: Ian Hobson Date: Fri, 5 Apr 2024 10:06:01 +0200 Subject: [PATCH] Fix a typo --- docs/api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api.md b/docs/api.md index b6f0121c2..84378205d 100644 --- a/docs/api.md +++ b/docs/api.md @@ -35,9 +35,9 @@ return_value.rs The runtime's prelude is a `KMap`, which is Koto's standard hashmap type. -can be added via `KMap::insert`, taking any value that implements -`Into`. Basic types like strings and numbers are automatically converted -to corresponding Koto types. +Values can be added to the prelude via `KMap::insert`, taking any Rust value +that implements `Into`. Basic types like strings and numbers are +automatically converted to corresponding Koto types. ```rust_include prelude_value.rs