From: Josh Soref Date: Thu, 2 Feb 2017 10:01:31 +0000 (+0000) Subject: spelling: javascript X-Git-Tag: rec-4.1.0-alpha1~291^2~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6457fc3f287d73aea11570a9d8d61bb20fc8a446;p=thirdparty%2Fpdns.git spelling: javascript --- diff --git a/docs/markdown/changelog.raw.md b/docs/markdown/changelog.raw.md index a6f6280a04..39a8f8322b 100644 --- a/docs/markdown/changelog.raw.md +++ b/docs/markdown/changelog.raw.md @@ -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 diff --git a/ext/json11/json11.hpp b/ext/json11/json11.hpp index 5202ef9323..a68394b0e0 100644 --- a/ext/json11/json11.hpp +++ b/ext/json11/json11.hpp @@ -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.