Skip to content

Commit 61b8f0b

Browse files
committed
Replace double quote w simple quote
1 parent 2aae322 commit 61b8f0b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/node/getting_started.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ const { MeiliSearch } = require('../../dist/bundles/meilisearch.umd.js')
1010
const index = client.index('movies') // If your index exists
1111

1212
const dataset = [
13-
{ id: 1, title: "Carol", genres: ["Romance", "Drama"] },
14-
{ id: 2, title: "Wonder Woman", genres: ["Action","Adventure"] },
15-
{ id: 3, title: "Life of Pi", genres: ["Adventure","Drama"] },
16-
{ id: 4, title: "Mad Max: Fury Road", genres: ["Adventure","Science Fiction"] },
17-
{ id: 5, title: "Moana", genres: ["Fantasy", "Action"]},
18-
{ id: 6, title: "Philadelphia", genres: ["Drama"] },
13+
{ id: 1, title: 'Carol', genres: ['Romance', 'Drama'] },
14+
{ id: 2, title: 'Wonder Woman', genres: ['Action', 'Adventure'] },
15+
{ id: 3, title: 'Life of Pi', genres: ['Adventure', 'Drama'] },
16+
{ id: 4, title: 'Mad Max: Fury Road', genres: ['Adventure', 'Science Fiction'] },
17+
{ id: 5, title: 'Moana', genres: ['Fantasy', 'Action']},
18+
{ id: 6, title: 'Philadelphia', genres: ['Drama'] },
1919
]
2020

2121
// If the index 'movies' does not exist, MeiliSearch creates it when you first add the documents.

0 commit comments

Comments
 (0)