Skip to content

Commit 6400c9f

Browse files
committed
spelling: javascript
1 parent 16445b5 commit 6400c9f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Neo4j Driver 1.6 for Javascript
1+
# Neo4j Driver 1.6 for JavaScript
22

33

44
A database driver for Neo4j 3.0.0+.
@@ -265,7 +265,7 @@ While there is no need to grab admin right if you are running tests against an e
265265

266266
## A note on numbers and the Integer type
267267
The Neo4j type system includes 64-bit integer values.
268-
However, Javascript can only safely represent integers between `-(2`<sup>`53`</sup>` - 1)` and `(2`<sup>`53`</sup>` - 1)`.
268+
However, JavaScript can only safely represent integers between `-(2`<sup>`53`</sup>` - 1)` and `(2`<sup>`53`</sup>` - 1)`.
269269
In order to support the full Neo4j type system, the driver will not automatically convert to javascript integers.
270270
Any time the driver receives an integer value from Neo4j, it will be represented with an internal integer type by the driver.
271271

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Documentation for Neo4j Bolt Driver for Javascript
1+
# Documentation for Neo4j Bolt Driver for JavaScript
22
The docs are generated with [esdoc](https://github.com/esdoc/esdoc), which is added
33
as a devDependency to this project.
44

esdoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"enable": true
3939
},
4040
"brand": {
41-
"title": "Neo4j Bolt Driver 1.6 for Javascript",
41+
"title": "Neo4j Bolt Driver 1.6 for JavaScript",
4242
"repository": "https://github.com/neo4j/neo4j-javascript-driver"
4343
}
4444
}

src/v1/integer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ class Integer {
5757

5858
// The internal representation of an Integer is the two given signed, 32-bit values.
5959
// We use 32-bit pieces because these are the size of integers on which
60-
// Javascript performs bit-operations. For operations like addition and
60+
// JavaScript performs bit-operations. For operations like addition and
6161
// multiplication, we split each number into 16 bit pieces, which can easily be
62-
// multiplied within Javascript's floating-point representation without overflow
62+
// multiplied within JavaScript's floating-point representation without overflow
6363
// or change in sign.
6464
//
6565
// In the algorithms below, we frequently reduce the negative case to the

0 commit comments

Comments
 (0)