Skip to content

Commit 709d328

Browse files
committed
Ensure correct spelling of Node.js (#5622)
1 parent 67953e3 commit 709d328

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
Most of the documentation for `dd-trace` is available on these webpages:
1616

1717
- [Tracing Node.js Applications](https://docs.datadoghq.com/tracing/languages/nodejs/) - most project documentation, including setup instructions
18-
- [Configuring the NodeJS Tracing Library](https://docs.datadoghq.com/tracing/trace_collection/library_config/nodejs) - environment variables and config options
18+
- [Configuring the Node.js Tracing Library](https://docs.datadoghq.com/tracing/trace_collection/library_config/nodejs) - environment variables and config options
1919
- [API Documentation](https://datadog.github.io/dd-trace-js) - method signatures, plugin list, and some usage examples
2020
- [APM Terms and Concepts](https://docs.datadoghq.com/tracing/visualization/) - a glossary of concepts applicable across all languages
2121

@@ -59,7 +59,7 @@ When a new release line is introduced the previous release line then enters main
5959
Once that year is up the release line enters End of Life and will not receive new updates.
6060
The library also follows the Node.js LTS lifecycle wherein new release lines drop compatibility with Node.js versions that reach end-of-life (with the maintenance release line still receiving updates for a year).
6161

62-
For more information about library versioning and compatibility, see the [NodeJS Compatibility Requirements](https://docs.datadoghq.com/tracing/trace_collection/compatibility/nodejs/#releases) page.
62+
For more information about library versioning and compatibility, see the [Node.js Compatibility Requirements](https://docs.datadoghq.com/tracing/trace_collection/compatibility/nodejs/#releases) page.
6363

6464
Changes associated with each individual release are documented on the [GitHub Releases](https://github.com/DataDog/dd-trace-js/releases) screen.
6565

docs/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ The following attributes are available to override Datadog-specific options:
377377

378378
<h3 id="tracer-settings">Tracer settings</h3>
379379

380-
Options can be configured as a parameter to the [init()](./interfaces/tracer.html#init) method or as environment variables. These are documented over on [Configuring the NodeJS Tracing Library](https://docs.datadoghq.com/tracing/trace_collection/library_config/nodejs).
380+
Options can be configured as a parameter to the [init()](./interfaces/tracer.html#init) method or as environment variables. These are documented over on [Configuring the Node.js Tracing Library](https://docs.datadoghq.com/tracing/trace_collection/library_config/nodejs).
381381

382382
<h3 id="custom-logging">Custom Logging</h3>
383383

packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-analyzers/ldap-sensitive-analyzer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = function extractSensitiveRanges (evidence) {
1313
let regexResult = pattern.exec(evidence.value)
1414
while (regexResult != null) {
1515
if (!regexResult.groups.LITERAL) continue
16-
// Computing indices manually since NodeJs 12 does not support d flag on regular expressions
16+
// Computing indices manually since Node.js 12 does not support d flag on regular expressions
1717
// TODO Get indices from group by adding d flag in regular expression
1818
const start = regexResult.index + (regexResult[0].length - regexResult.groups.LITERAL.length - 1)
1919
const end = start + regexResult.groups.LITERAL.length

0 commit comments

Comments
 (0)