From 6cc260ee17a8198b9f4a87cf74694a5a2b942a68 Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Sun, 29 Jan 2023 19:13:51 +0100 Subject: [PATCH] DOCS: Typo `dnscontrol` = `DNSControl` (#2005) Co-authored-by: Tom Limoncelli --- documentation/functions/global/require.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/functions/global/require.md b/documentation/functions/global/require.md index d7b1a9289..a160b28ac 100644 --- a/documentation/functions/global/require.md +++ b/documentation/functions/global/require.md @@ -92,7 +92,7 @@ is to node's `require()`. After all, the reason node.js calls it "require" is because it's a declarative statement saying the file is needed, and so should be loaded if it hasn't already been loaded. -In contrast, dnscontrol's require is actually an imperative command to +In contrast, DNSControl's `require()` is actually an imperative command to load the file and execute the code or parse the data from it. (So if two files both `require("./tools.js")`, for example, then it will be loaded twice, whereas in node.js it would only be loaded once.)