Added comment to result selector

This commit is contained in:
squidfunk
2023-09-21 18:40:19 +02:00
parent 26de75679c
commit ac918d6a8b

View File

@@ -137,7 +137,7 @@ export function watch(
): Observable<string> { ): Observable<string> {
return fromEvent( return fromEvent(
chokidar.watch(pattern, options), chokidar.watch(pattern, options),
"change", file => file "change", file => file // see https://t.ly/dli_k
) as Observable<string> ) as Observable<string>
} }