Skip to content

Commit 42d8a5d

Browse files
committed
fix formatting
1 parent 2c1ba34 commit 42d8a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/src/main/java/org/neo4j/docs/driver/DriverIntroductionExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void createFriendship(final String person1Name, final String person2Name)
7171
System.out.println(String.format("Created friendship between: %s, %s",
7272
record.get("p1").get("name").asString(),
7373
record.get("p2").get("name").asString()));
74-
// You should capture any errors along with the query and data for traceability
74+
// You should capture any errors along with the query and data for traceability
7575
} catch (Neo4jException ex) {
7676
LOGGER.log(Level.SEVERE, createFriendshipQuery + " raised an exception", ex);
7777
throw ex;

0 commit comments

Comments
 (0)