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.)