Skip to content

Commit f52c135

Browse files
Update README.md
1 parent 53c98fb commit f52c135

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ Example using it via JavaScript:
110110
```javascript
111111
Parse.initialize('myAppId','unused');
112112
Parse.serverURL = 'https://whatever.herokuapp.com';
113+
113114
var obj = new Parse.Object('GameScore');
114115
obj.set('score',1337);
115116
obj.save().then(function(obj) {
@@ -140,8 +141,8 @@ Example using it on iOS (Swift):
140141
```swift
141142
Parse.initializeWithConfiguration(ParseClientConfiguration(block: { (configuration: ParseMutableClientConfiguration) -> Void in
142143
configuration.server = "https://<# Your Heroku server #>/parse"
143-
configuration.applicationId ="<# Your APP_ID #>"
144-
configuration.clientKey ="<# Your CLIENT_KEY #>"
144+
configuration.applicationId = "<# Your APP_ID #>"
145+
configuration.clientKey = "<# Your CLIENT_KEY #>"
145146
}))
146147
```
147148
You can change the server URL in all of the open-source SDKs, but we're releasing new builds which provide initialization time configuration of this property.

0 commit comments

Comments
 (0)