From 9168360727bd4ecf93df692719012b903ea318b8 Mon Sep 17 00:00:00 2001 From: Julien Ripouteau Date: Sun, 28 Apr 2024 00:55:58 +0200 Subject: [PATCH] chore: wip --- src/editor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/editor.ts b/src/editor.ts index a75dbb5..1aaceba 100644 --- a/src/editor.ts +++ b/src/editor.ts @@ -57,8 +57,8 @@ export class EnvEditor { /** * Add key-value pair to the dot-env files. - * If `withEmptyExampleValue` is true, then only the key is added to the - * `.env.example` file. + * If `withEmptyExampleValue` is true then the key will be added with an empty value + * to the `.env.example` file. */ add(key: string, value: string | number | boolean, withEmptyExampleValue = false) { this.#files.forEach((file) => {