Explorar o código

Docs: Small fixes.

Maciej Bukowski %!s(int64=6) %!d(string=hai) anos
pai
achega
d79c892e36
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      packages/ckeditor5-watchdog/docs/features/watchdog.md

+ 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.' );
 } );
 ```