Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix the issue #243
fixed typo
  • Loading branch information
artronen authored Apr 25, 2023
commit 0ffef63ddd542f70c4db399412ca25363760cdc2
6 changes: 3 additions & 3 deletions delegated-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ If `someCondition` fails, the variable won't be computed at all. -->
<!-- * `thisRef` must be the same type as, or a supertype of, the *property owner* (for extension properties, it should be the type being extended).
* `property` must be of type `KProperty<*>` or its supertype. -->

* `thisRef` — должен иметь такой же тип или быть наследником типа *хозяина свойства* (для расширений — тип, который
* `thisRef` — должен иметь такой же тип или быть родителем *хозяина свойства* (для расширений — тип, который
расширяется);
* `property` — должен быть типа `KProperty<*>` или его родительского типа.

Expand Down Expand Up @@ -375,7 +375,7 @@ with the following parameters: -->
* `property` must be of type `KProperty<*>` or its supertype.
* `value` must be of the same type as the property (or its supertype). -->

* `thisRef` — должен иметь такой же тип или быть наследником типа *хозяина свойства* (для расширений — тип, который
* `thisRef` — должен иметь такой же тип или быть родителем *хозяина свойства* (для расширений — тип, который
расширяется);
* `property` — должен быть типа `KProperty<*>` или его родительского типа;
* `value` — должен быть того же типа, что и свойство (или его родительский тип).
Expand Down Expand Up @@ -555,7 +555,7 @@ class MyUI {
<!-- * `thisRef` must be the same type as, or a supertype of, the _property owner_ (for extension properties, it should be the type being extended);
* `property` must be of type `KProperty<*>` or its supertype. -->

* `thisRef` — должен иметь такой же тип, или быть наследником типа *хозяина свойства* (для расширений — тип, который
* `thisRef` — должен иметь такой же тип, или быть родителем *хозяина свойства* (для расширений — тип, который
расширяется)
* `property` — должен быть типа `KProperty<*>` или его родительского типа.

Expand Down