From f070e8243463c5d04c066cfecb04b6007415ce9c Mon Sep 17 00:00:00 2001 From: Avril Date: Tue, 23 Jun 2020 12:01:57 +0100 Subject: [PATCH] uhh --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d07759e..5cd7df4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "malloc-array" description = "libc heap array allocator" -version = "1.4.3" +version = "1.4.4" authors = ["Avril "] edition = "2018" license = "GPL-3.0-or-later" diff --git a/README.md b/README.md index 1a8fe88..05b621c 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ The library also provides the `InitIter` type, which is a mutable iterator for ` let mut array = heap![String; 10]; for mut init in array.initialise() { - init.set(format!("string!")); + init.put(format!("string!")); // Also see docs for `init::Init` type. } drop(array); // This is now safe.