Browse Source

Add missing comma.

Refs cakephp/database#1
mark_story 8 years ago
parent
commit
2555f5974a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Database/README.md

+ 1 - 1
src/Database/README.md

@@ -55,7 +55,7 @@ directly in the options array:
 use Cake\Database\Connection;
 use Cake\Database\Connection;
 
 
 $connection = new Connection([
 $connection = new Connection([
-	'driver' => 'Cake\Database\Driver\Sqlite'
+	'driver' => 'Cake\Database\Driver\Sqlite',
 	'database' => '/path/to/file.db'
 	'database' => '/path/to/file.db'
 ]);
 ]);
 ```
 ```