Skip to content

Commit d508012

Browse files
committed
Final fixups before review
1 parent 421cb78 commit d508012

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

source/includes/api-details/dart/crud/delete-objects-procedure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
You can only delete live objects. If you are working with a frozen
1111
object, you must query for the live object before deleting the object.
1212

13-
#. Call the :dotnet-sdk:`delete <realm/Realm/delete.html>`
13+
#. Call the :flutter-sdk:`delete <realm/Realm/delete.html>`
1414
method with the object you want to delete as an argument.
1515

1616
#. The specified object is deleted from the database and can no longer be
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
You can remove keys and values from a :flutter-sdk:`RealmMap
2-
<realm/RealmMap-class.html>`within a write transaction. To remove a key and
2+
<realm/RealmMap-class.html>` within a write transaction. To remove a key and
33
its associated value, call ``map.remove()``. To remove an element matching
44
a query, call ``map.removeWhere()``.
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
To delete all objects of a given object type from the database, pass
2-
the result of :swift-sdk:`Realm.objects(_:)
3-
<Structs/Realm.html#/s:10RealmSwift0A0V7objectsyAA7ResultsVyxGxmSo0aB6ObjectCRbzlF>`
4-
for the type you wish to delete to :swift-sdk:`Realm.delete(_:)
1+
To delete all objects of a given object type from the database, query for
2+
objects of the type you want to delete, and pass the result to
3+
:swift-sdk:`Realm.delete(_:)
54
<Structs/Realm.html#/s:10RealmSwift0A0V6deleteyyxSTRzSo13RLMObjectBaseC7ElementRczlF>`
65
inside of a write transaction.

source/includes/api-details/swift/crud/delete-objects-procedure.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
1. Open a write transaction with one of the relevant APIs:
2+
23
- :swift-sdk:`write() <Structs/Realm.html#/s:10RealmSwift0A0V5write16withoutNotifying_xSaySo20RLMNotificationTokenCG_xyKXEtKlF>`
34
- :swift-sdk:`writeAsync() <Structs/Realm.html#/s:10RealmSwift0A0V10writeAsync_10onCompletes6UInt32Vyyc_ys5Error_pSgcSgtF>`
45
- :swift-sdk:`asyncWrite() <Structs/Realm.html#/s:10RealmSwift0A0V10asyncWriteyxxyKXEYaKlF>` and friends

source/sdk/crud/delete.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Delete Objects and Property Values
55
==================================
66

77
.. meta::
8-
:description: Provide a short description of the consolidated page. This is critical for SEO.
8+
:description: Learn how to delete objects from the database, clear property values, and remove elements from collections.
99
:keywords: Realm, C++ SDK, Flutter SDK, Kotlin SDK, Java SDK, .NET SDK, Node.js SDK, Swift SDK, code example
1010

1111
.. facet::

0 commit comments

Comments
 (0)