From 3c20321aba947273a0cdbac9ad5d61972e36a321 Mon Sep 17 00:00:00 2001 From: Goren Barak Date: Fri, 1 Dec 2023 15:57:18 -0500 Subject: [PATCH] Revert "Fixed README" This reverts commit 3beff945a4b7d2a9f3e48a1430c46f928c212dcd. --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8e60afe..e0311a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "templest" -version = "1.0.0" +version = "0.1.1" edition = "2021" description = "A procedural macro to manage temporary variables" license = "Unlicense" diff --git a/README.md b/README.md index be1d672..70b4078 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A single procedural macro to make temporary variables easier. Code example: ```rs -use temp::temp; +use templest::temp; fn main() { let temp!() = 10; @@ -13,7 +13,7 @@ fn main() { This code example prints `10` to the console. If we add a new temporary variable, after we define the first one as 10, and define that as 20, than 20 will be printed. ```rs -use temp::temp; +use templest::temp; fn main() { let temp!() = 10;