Skip to content

Commit 106f97d

Browse files
authored
docs: refactor chapter in migration guide
1 parent 4d5b151 commit 106f97d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

MIGRATION.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,16 @@ The Parse ObjC SDK will be phased out in the future in favor of the more modern
2222

2323
# Behavioral Differences
2424

25-
- x
26-
- x
27-
- x
28-
29-
# Known Issues
30-
31-
The issues below are important to consider before migrating.
32-
33-
- ⚠️ Partially updating an object sends the complete object (including unchanged properties) to the server if you follow the familiar syntax from the Parse ObjC SDK or any other Parse SDK. This can have a significant impact on data transfer costs depending on your use case and architecture. All other Parse SDKs, including the Parse ObjC SDK, only send the changed properties to the server. The Parse Swift SDK requires a different syntax with additional overhead to achieve the same behavior. For details see [GitHub issue #242](https://github.com/parse-community/Parse-Swift/issues/242).
25+
- ⚠️ Partially updating an object sends the complete object (including unchanged properties) to the server if you follow the familiar syntax from the Parse ObjC SDK or any other Parse SDK. This can have a significant impact on data transfer costs depending on your use case and architecture. All other Parse SDKs, including the Parse ObjC SDK, only send the changed properties to the server. The Parse Swift SDK requires a different syntax with additional overhead to achieve the same behavior. See [#401](https://github.com/parse-community/Parse-Swift/issues/401), [#242](https://github.com/parse-community/Parse-Swift/issues/242).
3426

3527
<details>
3628
<summary>Code Examples</summary>
3729

3830
```swift
39-
// The following examples compare how to update a saved object in the Parse ObjC SDK
40-
// vs. the Parse Swift SDK. For simplicity, the examples use synchonrous methods.
31+
// The following examples compare how to update a saved object in the Parse ObjC SDK vs. the
32+
// Parse Swift SDK. For simplicity, the examples show how to migrate synchonrous methods. If
33+
// you are migrating asynchronous methods your code looks slightly differently, but the same
34+
// approach applies.
4135

4236
// Parse ObjC SDK
4337
PFObject *obj = [PFObject objectWithClassName:@"Example"];
@@ -120,6 +114,12 @@ The issues below are important to consider before migrating.
120114
```
121115
</details>
122116

117+
# Known Issues
118+
119+
These issues below are especially important to consider before migrating.
120+
121+
- (none)
122+
123123
# Feature Comparison
124124

125125
This table only lists features that are known to be available in the Parse ObjC SDK but still missing in the Swift SDK. *This table is a work-in-progress.*

0 commit comments

Comments
 (0)