Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 36c59ae

Browse files
committed
Merge pull request #60 from rajatmehndiratta/master
typo fix
2 parents 22043ee + 618a1d9 commit 36c59ae

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/__mocks__/react-native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This class stubs out the React-Native classes with React classes
55
*/
6-
'use string';
6+
'use strict';
77
/**
88
* ## Imports
99
*

src/lib/AppAuthToken.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* A thin wrapper over the react-native-simple-store
55
*
66
*/
7-
'use string';
7+
'use strict';
88
/**
99
* ## Imports
1010
*

src/lib/Backend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Abstract Base class for Backend support
55
*
66
*/
7-
'use string';
7+
'use strict';
88
/**
99
* ## Async support
1010
*

src/lib/BackendFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99

1010
import CONFIG from './config';
1111
import Parse from './Parse';

src/lib/Hapi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99
/**
1010
* ## Async support
1111
*

src/lib/Parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99
/**
1010
* ## Async support
1111
*

src/lib/__mocks__/BackendFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* see [https://parse.com/docs/rest/guide](https://parse.com/docs/rest/guide)
66
*
77
*/
8-
'use string';
8+
'use strict';
99

1010

1111
const backend = require('./Backend').default;

0 commit comments

Comments
 (0)