8
0
Эх сурвалжийг харах

Merge branch 'master' into t/ckeditor5/1599

Maciej Gołaszewski 6 жил өмнө
parent
commit
0f4be0aa6f

+ 1 - 1
packages/ckeditor5-utils/docs/framework/guides/deep-dive/observables.md

@@ -77,7 +77,7 @@ Each time the `label` property changes, the view fires the `change:label` event
 ```js
 const view = new Button();
 
-view.on( 'change:label', ( evt, propertyName, newLabel, oldLabel ) => {
+view.on( 'change:label', ( evt, propertyName, newValue, oldValue ) => {
     console.log(
         `#${ propertyName } has changed from "${ oldValue }" to "${ newValue }"`
     );