From f1c07c7b203630429e84dddd8b4cf76612dfc75d Mon Sep 17 00:00:00 2001 From: Augustin Mauroy Date: Tue, 28 Jan 2025 10:56:37 +0100 Subject: [PATCH] doc: add example --- src/node_dotenv.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node_dotenv.cc b/src/node_dotenv.cc index 7ea6a13b356223..e60ae95ff40615 100644 --- a/src/node_dotenv.cc +++ b/src/node_dotenv.cc @@ -147,6 +147,7 @@ void Dotenv::ParseContent(const std::string_view input) { continue; } else { // If no newline is found, we've reached the end of content + // Example: #ABC=1 break; } }