diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-90660-RegistrationOfWidgetsChanged.rst b/typo3/sysext/core/Documentation/Changelog/master/Breaking-90660-RegistrationOfWidgetsChanged.rst
index 7c32bc0f88682af6d36110075a62a0289c3c46a0..708f8e317e790c590565dc542cfcd6b256226ff5 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Breaking-90660-RegistrationOfWidgetsChanged.rst
+++ b/typo3/sysext/core/Documentation/Changelog/master/Breaking-90660-RegistrationOfWidgetsChanged.rst
@@ -84,8 +84,8 @@ a little bit.
          title: 'LLL:EXT:extension/Resources/Private/Language/locallang.xlf:widgets.myOwnRSSWidget.title'
          description: 'LLL:EXT:extension/Resources/Private/Language/locallang.xlf:widgets.myOwnRSSWidget.description'
          iconIdentifier: 'content-widget-rss'
-         height: 4
-         width: 4
+         height: 'medium'
+         width: 'medium'
 
 It starts with the name of the service. Best practise is to use a dot-styled
 name as there will be now class with that name. On the second line, we define
@@ -103,6 +103,9 @@ You can still use translatable strings like
 Important to remember is that the :yaml:`widgetGroups`` property changed to :yaml:`groupNames`
 to stay consistent with other service registrations.
 
+Please note that valid values for height and width are now: `small`, `medium`,
+and `large`.
+
 In the following table you can see which WidgetType to use now based on the
 abstract you used previously.