From bef2b1759b4d03e2d45c4826e967b4f7ab190509 Mon Sep 17 00:00:00 2001 From: Paolo Flores Date: Wed, 13 Nov 2024 02:26:07 -0500 Subject: [PATCH] update env_vars markdown formatting --- docs/env_vars.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/env_vars.md b/docs/env_vars.md index 804653d..933144a 100644 --- a/docs/env_vars.md +++ b/docs/env_vars.md @@ -14,8 +14,8 @@ defined in the `src/env.rs` file, so you can use them in your code like this: ```rust fn main() { - let port: u16 = *crate::env::PORT; - println!("Server running on port {}", port); + let port: u16 = *crate::env::PORT; + println!("Server running on port {}", port); } ``` @@ -58,8 +58,8 @@ CLOUDINARY_API_SECRET="mJd3bbkWa5mPVKuNBgCLxjY5FSM" ```
-The above examples does not contain any valid credentials and are just -examples of how a real .env file would look like in both cases. +The above files does not contain any valid credentials and just +demonstrate how a real .env file would look like in both cases.
## Uploading the production variables to GitHub