]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: javascript
authorJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:01:31 +0000 (10:01 +0000)
committerJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:01:31 +0000 (10:01 +0000)
docs/markdown/changelog.raw.md
ext/json11/json11.hpp

index a6f6280a04ae6b7de6311608e3a63cedf84d162a..39a8f8322bfa96b9aece2e529a1851f3e250d371 100644 (file)
@@ -240,7 +240,7 @@ It has the following improvements:
 
 And these additions:
 
- - [#3981](https://github.com/PowerDNS/pdns/pull/3981) Import Javascript sources for libs shipped with Recursor (Christian Hofstaedtler)
+ - [#3981](https://github.com/PowerDNS/pdns/pull/3981) Import JavaScript sources for libs shipped with Recursor (Christian Hofstaedtler)
  - [#4012](https://github.com/PowerDNS/pdns/pull/4012) add tags support to ProtobufLogger.py
  - [#4032](https://github.com/PowerDNS/pdns/pull/4032) Set the existing policy tags in `dq` for `{pre,post}resolve`
  - [#4077](https://github.com/PowerDNS/pdns/pull/4077) Add DNSSEC validation statistics
index 5202ef9323bb7930a7ecd48a02b48af0f9c20993..a68394b0e00f7aa9df1aec97f6cd868d3ae32c21 100644 (file)
@@ -16,7 +16,7 @@
  * A note on numbers - JSON specifies the syntax of number formatting but not its semantics,
  * so some JSON implementations distinguish between integers and floating-point numbers, while
  * some don't. In json11, we choose the latter. Because some JSON implementations (namely
- * Javascript itself) treat all numbers as the same type, distinguishing the two leads
+ * JavaScript itself) treat all numbers as the same type, distinguishing the two leads
  * to JSON that will be *silently* changed by a round-trip through those implementations.
  * Dangerous! To avoid that risk, json11 stores all numbers as double internally, but also
  * provides integer helpers.