Skip to content

Commit

Permalink
semicolons in global vars
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-ottolenghi committed Dec 5, 2023
1 parent 8ac0631 commit f204018
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions javascript-manual/modules/ROOT/pages/data-types.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ For a list of time zone abbreviations, see link:https://en.wikipedia.org/wiki/Li
[source, javascript]
----
const neo4j = require('neo4j-driver');
const URI = '<URI for Neo4j database>'
const USER = '<Username>'
const PASSWORD = '<Password>'
const URI = '<URI for Neo4j database>';
const USER = '<Username>';
const PASSWORD = '<Password>';
(async () => {
const driver = neo4j.driver(URI, neo4j.auth.basic(USER, PASSWORD))
Expand Down Expand Up @@ -307,9 +307,9 @@ This should be used with care, as no guarantees are given about the mapping betw
[source, javascript]
----
const neo4j = require('neo4j-driver');
const URI = '<URI for Neo4j database>'
const USER = '<Username>'
const PASSWORD = '<Password>'
const URI = '<URI for Neo4j database>';
const USER = '<Username>';
const PASSWORD = '<Password>';
(async () => {
const driver = neo4j.driver(URI, neo4j.auth.basic(USER, PASSWORD))
Expand Down Expand Up @@ -343,9 +343,9 @@ This should be used with care, as no guarantees are given about the mapping betw
[source, javascript]
----
const neo4j = require('neo4j-driver');
const URI = '<URI for Neo4j database>'
const USER = '<Username>'
const PASSWORD = '<Password>'
const URI = '<URI for Neo4j database>';
const USER = '<Username>';
const PASSWORD = '<Password>';
(async () => {
const driver = neo4j.driver(URI, neo4j.auth.basic(USER, PASSWORD))
Expand Down Expand Up @@ -390,9 +390,9 @@ For full documentation, see link:{neo4j-docs-base-uri}/api/javascript-driver/cur
[source, javascript]
----
const neo4j = require('neo4j-driver');
const URI = '<URI for Neo4j database>'
const USER = '<Username>'
const PASSWORD = '<Password>'
const URI = '<URI for Neo4j database>';
const USER = '<Username>';
const PASSWORD = '<Password>';
(async () => {
const driver = neo4j.driver(URI, neo4j.auth.basic(USER, PASSWORD))
Expand Down

0 comments on commit f204018

Please sign in to comment.