Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
cmelchior committed Nov 30, 2015
1 parent 247c6cd commit 01d30e2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions realm/realm-library/src/main/java/io/realm/Realm.java
Original file line number Diff line number Diff line change
Expand Up @@ -750,8 +750,8 @@ public <E extends RealmObject> List<E> copyToRealmOrUpdate(Iterable<E> objects)
* that the copied objects might contain data that are no longer consistent with other managed Realm objects.
*
* *WARNING*: Any changes to copied objects can be merged back into Realm using {@link #copyToRealmOrUpdate(RealmObject)},
* but all fields will be overridden, not just those that was changed. This include references to other objects, and
* can potentially override changes made by other threads.
* but all fields will be overridden, not just those that were changed. This includes references to other objects,
* and can potentially override changes made by other threads.
*
* @param realmObjects RealmObjects to copy
* @param <E> type of object.
Expand All @@ -771,8 +771,8 @@ public <E extends RealmObject> List<E> copyFromRealm(Iterable<E> realmObjects) {
* that the copied objects might contain data that are no longer consistent with other managed Realm objects.
*
* *WARNING*: Any changes to copied objects can be merged back into Realm using {@link #copyToRealmOrUpdate(Iterable)},
* but all fields will be overridden, not just those that was changed. This include references to other objects even
* though they might be {@code null} due to {@code maxDepth} being reached. This can also potentially override
* but all fields will be overridden, not just those that were changed. This includes references to other objects
* even though they might be {@code null} due to {@code maxDepth} being reached. This can also potentially override
* changes made by other threads.
*
* @param realmObjects RealmObjects to copy.
Expand Down Expand Up @@ -806,8 +806,8 @@ public <E extends RealmObject> List<E> copyFromRealm(Iterable<E> realmObjects, i
* that the copied objects might contain data that are no longer consistent with other managed Realm objects.
*
* *WARNING*: Any changes to copied objects can be merged back into Realm using {@link #copyToRealmOrUpdate(RealmObject)},
* but all fields will be overridden, not just those that was changed. This include references to other objects, and
* can potentially override changes made by other threads.
* but all fields will be overridden, not just those that were changed. This includes references to other objects,
* and can potentially override changes made by other threads.
*
* @param realmObject {@link RealmObject} to copy
* @param <E> type of object.
Expand All @@ -827,8 +827,8 @@ public <E extends RealmObject> E copyFromRealm(E realmObject) {
* that the copied objects might contain data that are no longer consistent with other managed Realm objects.
*
* *WARNING*: Any changes to copied objects can be merged back into Realm using {@link #copyToRealmOrUpdate(RealmObject)},
* but all fields will be overridden, not just those that was changed. This include references to other objects even
* though they might be {@code null} due to {@code maxDepth} being reached. This can also potentially override
* but all fields will be overridden, not just those that were changed. This includes references to other objects
* even though they might be {@code null} due to {@code maxDepth} being reached. This can also potentially override
* changes made by other threads.
*
* @param realmObject {@link RealmObject} to copy
Expand Down

0 comments on commit 01d30e2

Please sign in to comment.