docs(watch): fix typo in watcher's jsdocs

This commit is contained in:
김건희 2018-08-12 07:40:13 +09:00 коммит произвёл Connor Peet
Родитель 158261b22e
Коммит 4f1c888e0e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -470,7 +470,7 @@ export class Watcher extends EventEmitter {
public on(event: 'put', handler: (kv: RPC.IKeyValue, previous?: RPC.IKeyValue) => void): this;
/**
* put is fired, in addition to `data`, when a key is deleted from etcd.
* delete is fired, in addition to `data`, when a key is deleted from etcd.
*/
public on(event: 'delete', handler: (kv: RPC.IKeyValue, previous?: RPC.IKeyValue) => void): this;