Skip to content

Commit 602ea08

Browse files
committed
Missing semicolon
Added a missing (but optional) semicolon at the end of `databaseUri` variable declaration for consistency.
1 parent ab41269 commit 602ea08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
var express = require('express');
55
var ParseServer = require('parse-server').ParseServer;
66

7-
var databaseUri = process.env.DATABASE_URI || process.env.MONGOLAB_URI
7+
var databaseUri = process.env.DATABASE_URI || process.env.MONGOLAB_URI;
88

99
if (!databaseUri) {
1010
console.log('DATABASE_URI not specified, falling back to localhost.');

0 commit comments

Comments
 (0)