Skip to content

Commit 6a7698c

Browse files
committed
Incorporate review feedback
1 parent d4cf1e4 commit 6a7698c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Every write transaction for a subscription set has a performance cost. If you
2-
need to make multiple updates to a Realm object during a session, consider
2+
need to make multiple updates to an SDK object during a session, consider
33
keeping edited objects in memory until all changes are complete. This
4-
improves sync performance by only writing the complete and updated object to your
5-
realm instead of every change.
4+
improves sync performance by only writing the complete and updated object to
5+
your database instead of every change.

source/sdk/sync/write-to-synced-database.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ write occurs.
226226

227227
.. _sdks-writes-outside-subscription:
228228

229-
Writes that Don't Match the Query Subscription
229+
Writes That Don't Match the Query Subscription
230230
``````````````````````````````````````````````
231231

232232
You can only write objects to a synced database if they match the
@@ -331,8 +331,8 @@ database is already open in the main app, or is syncing data in the background,
331331
you may see a crash related to ``Realm::MultiSyncAgents``. In this scenario,
332332
you may need to restart the device.
333333

334-
Alternatives to Writing to a Synced Database in an Multiple Processes
335-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
334+
Alternatives to Writing to a Synced Database in Multiple Processes
335+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
336336

337337
If you need to read from or write to a synced database in more than one
338338
process, there are a few recommended alternatives:

0 commit comments

Comments
 (0)