From c68d0990144f2ae8e76102b361f95e515fb74b7d Mon Sep 17 00:00:00 2001 From: icyleaf Date: Fri, 23 Feb 2024 10:59:04 +0800 Subject: [PATCH] doc: typo --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 98dfa0c..ca0e61d 100644 --- a/README.md +++ b/README.md @@ -270,17 +270,17 @@ totem.get("id").as_i # => 123 totem.bind_env("f", "FOOD") totem.get("f").as_s # => "Pinapple" -totem.automative_env +totem.automatic_env totem.get("name").as_s # => "Polly" ``` Working with environment prefix: ```crystal -totem.automative_env(prefix: "totem") +totem.automatic_env(prefix: "totem") # Same as # totem.env_prefix = "totem" -# totem.automative_env = true +# totem.automatic_env = true totem.get("id").as_i # => 123 totem.get("food").as_s # => "Pinapple"