Skip to content

Commit 65cf41a

Browse files
author
Eduardo Quagliato
committed
syntax highlight fix
1 parent 4112f1a commit 65cf41a

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ like this:
2222
**Before replace**:
2323

2424
*document 1 (collection 1)*
25-
```json
25+
```js
2626
{
2727
id: ObjectId("X"),
2828
collection2_id: "B",
@@ -31,7 +31,7 @@ like this:
3131
```
3232

3333
*document 2 (collection 2)*
34-
```json
34+
```js
3535
{
3636
id: ObjectId("A"),
3737
collection2_id: "Y",
@@ -41,15 +41,15 @@ like this:
4141

4242
**After replace**:
4343
*document 1 (collection 1)*
44-
```json
44+
```js
4545
{
4646
id: ObjectId("X"),
4747
collection2_id: ObjectId("A")
4848
}
4949
```
5050

5151
*document 2 (collection 2)*
52-
```json
52+
```js
5353
{
5454
id: ObjectId("A"),
5555
collection2_id: ObjectId("X")

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ v1.1.0 -- 2017-09-09
33
- New replace configurations for batch and bulk updates
44
- Overhaul in documentation
55
- Standard JS lint
6+
7+
v1.1.1 -- 2017-09-09
8+
9+
- Syntax highlight fix

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mysql2mongo",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "It imports the MySQL records to a Mongo-based database",
55
"main": "run.js",
66
"scripts": {

0 commit comments

Comments
 (0)