Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: lindseymoore <71525840+lindseymoore@users.noreply.github.com>
  • Loading branch information
cbullinger and lindseymoore authored Oct 18, 2023
1 parent 46c438d commit bf52eac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions source/sdk/kotlin/realm-database/crud/delete.txt
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ To delete multiple objects at the same time, pass the object type to
``query()`` and specify a query that returns all objects that you want
to delete.

In the following example, we query for the first 3 ``Frog`` objects whose
In the following example, we query for the first three ``Frog`` objects whose
``species`` is "bullfrog", and then pass the results to
``mutableRealm.delete()`` to delete them from the realm:

Expand Down Expand Up @@ -302,7 +302,7 @@ You can remove one or more items from a ``RealmList`` at a time:
- To remove one item from the list, pass the element to
`list.remove() <{+kotlin-local-prefix+}io.realm.kotlin.types/-realm-list/index.html#731697687%2FFunctions%2F878332154>`__.
- To remove one item at a specified index in the list, pass the index to
`list.removeAt() <{+kotlin-local-prefix+}io.realm.kotlin.types/-realm-list/index.html#-209439875%2FFunctions%2F878332154>`__.
`list.removeAt() <{+kotlin-local-prefix+}io.realm.kotlin.types/-realm-list/index.html#1522148962%2FFunctions%2F878332154>`__.
- To remove multiple items from the list, pass the elements to
`list.removeAll() <{+kotlin-local-prefix+}io.realm.kotlin.types/-realm-list/index.html#1522148962%2FFunctions%2F878332154>`__.

Expand Down
2 changes: 1 addition & 1 deletion source/sdk/kotlin/realm-database/frozen-arch.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ support change listeners.

.. important:: Flows API Requires Kotlinx Coroutines

To use the Flows API in your KMP project, install the
To use the Flows API in your Kotlin Multiplatform project, install the
:github:`kotlinx.coroutines <Kotlin/kotlinx.coroutines#multiplatform>`
library.

Expand Down

0 comments on commit bf52eac

Please sign in to comment.