Selaa lähdekoodia

Docs: Fix code block padding in utils.js.

Maciej Gołaszewski 8 vuotta sitten
vanhempi
sitoutus
a2d2d8bb9f
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 3 3
      packages/ckeditor5-ui/src/dropdown/utils.js

+ 3 - 3
packages/ckeditor5-ui/src/dropdown/utils.js

@@ -142,11 +142,11 @@ export function addToolbarToDropdown( dropdownView, buttons ) {
  *		items.add( new Model( { label: 'First item', style: 'color: red' } ) );
  *		items.add( new Model( { label: 'Second item', style: 'color: green', class: 'foo' } ) );
  *
- *        const dropdown = createDropdown( locale );
+ *		const dropdown = createDropdown( locale );
  *
- *        addListToDropdown( dropdown, items );
+ *		addListToDropdown( dropdown, items );
  *
- *        // Will render a dropdown with a list in the panel containing two items.
+ *		// Will render a dropdown with a list in the panel containing two items.
  *		dropdown.render()
  *		document.body.appendChild( dropdown.element );
  *