Replace 'skin' in comments with 'instance'

This commit is contained in:
Dan Balasescu 2021-12-01 20:17:26 +09:00
parent c225f8f84c
commit 685bdd522e
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ public static ILive<T> ToLive<T>(this T realmObject)
where T : RealmObjectBase
{
// Subscribing to non-managed instances doesn't work.
// In this usage, the skin may be non-managed in tests.
// In this usage, the instance may be non-managed in tests.
if (!(list is IRealmCollection<T> realmCollection))
return null;
@ -162,7 +162,7 @@ public static ILive<T> ToLive<T>(this T realmObject)
where T : RealmObjectBase
{
// Subscribing to non-managed instances doesn't work.
// In this usage, the skin may be non-managed in tests.
// In this usage, the instance may be non-managed in tests.
if (!(list is IRealmCollection<T> realmCollection))
return null;