From 7803cf856edfc1a5137baca5318c35ec00246c45 Mon Sep 17 00:00:00 2001 From: menxia Date: Wed, 8 Apr 2026 19:09:49 +0000 Subject: [PATCH] docs: fix grammar - change 'it's' to 'its' Fixes #589 Changed 'it's' (it is) to 'its' (possessive) in the load_dotenv docstring. --- src/dotenv/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotenv/main.py b/src/dotenv/main.py index 491634d9..d17b45cb 100644 --- a/src/dotenv/main.py +++ b/src/dotenv/main.py @@ -403,7 +403,7 @@ def load_dotenv( Bool: True if at least one environment variable is set else False If both `dotenv_path` and `stream` are `None`, `find_dotenv()` is used to find the - .env file with it's default parameters. If you need to change the default parameters + .env file with its default parameters. If you need to change the default parameters of `find_dotenv()`, you can explicitly call `find_dotenv()` and pass the result to this function as `dotenv_path`.