From 84a077a4565cff8460101c3e57342e9421da65d9 Mon Sep 17 00:00:00 2001 From: Maciej Winnicki Date: Tue, 11 Oct 2016 21:51:39 +0200 Subject: [PATCH] fix type in env vars docs --- docs/01-guide/11-environment-variable-handling.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/01-guide/11-environment-variable-handling.md b/docs/01-guide/11-environment-variable-handling.md index 43eb569dd..36d0cb4de 100644 --- a/docs/01-guide/11-environment-variable-handling.md +++ b/docs/01-guide/11-environment-variable-handling.md @@ -10,11 +10,11 @@ Environment variables are a very important and often requested feature in Server ## Javascript -You can use [dotenv](https://www.npmjs.com/package/dotenv) to to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code. +You can use [dotenv](https://www.npmjs.com/package/dotenv) to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code. ## Python -You can use [python-dotenv](https://github.com/theskumar/python-dotenv) to to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code. +You can use [python-dotenv](https://github.com/theskumar/python-dotenv) to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code. ## Java