Kaynağa Gözat

Docs: Small fixes.

Maciej Bukowski 6 yıl önce
ebeveyn
işleme
d79c892e36

+ 2 - 2
packages/ckeditor5-watchdog/docs/features/watchdog.md

@@ -269,12 +269,12 @@ watchdog.on( 'restart', () => {
 
 // The `itemError` event is fired when an error occurred in one of the added items
 watchdog.on( 'itemError', ( evt, { error, itemId } ) => {
-	console.log( `An error occurred in the item with the '${ itemId }' id.` );
+	console.log( `An error occurred in an item with the '${ itemId }' id.` );
 } );
 
 // The `itemRestarted` event is fired when the item is set back to the `ready` state (after it was in `error` state).
 watchdog.on( 'itemRestart', ( evt, { itemId } ) => {
-	console.log( 'The item with with the '${ itemId }' id has been restarted.' );
+	console.log( 'An item with with the '${ itemId }' id has been restarted.' );
 } );
 ```