From f3815a2908fc752251f27cef3d1b5c5ced57d3bd Mon Sep 17 00:00:00 2001 From: Cornelius Roemer Date: Sun, 31 Aug 2025 01:04:10 +0200 Subject: [PATCH] Fix typo in README: asumming -> assuming --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1473eec..e35ec13 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ $ FOO=8080 BAR=true BAZ=hello ZOOM=10 yourapp ``` The common pattern for prefixing env var names for a specific app is supported using -the `envy::prefixed(prefix)` interface. Asumming your env vars are prefixed with `APP_` +the `envy::prefixed(prefix)` interface. Assuming your env vars are prefixed with `APP_` the above example may instead look like ```rust