File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- # Neo4j Driver 1.6 for Javascript
1+ # Neo4j Driver 1.6 for JavaScript
22
33
44A 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
267267The 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) ` .
269269In order to support the full Neo4j type system, the driver will not automatically convert to javascript integers.
270270Any time the driver receives an integer value from Neo4j, it will be represented with an internal integer type by the driver.
271271
Original file line number Diff line number Diff line change 1- # Documentation for Neo4j Bolt Driver for Javascript
1+ # Documentation for Neo4j Bolt Driver for JavaScript
22The docs are generated with [ esdoc] ( https://github.com/esdoc/esdoc ) , which is added
33as a devDependency to this project.
44
Original file line number Diff line number Diff line change 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 }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments