@@ -312,7 +312,7 @@ interface Array<T> {}`
312312 const watchDirectory : HostWatchDirectory = ( directory , cb ) => this . watchFile ( directory , ( ) => cb ( directory ) , PollingInterval . Medium ) ;
313313 this . customRecursiveWatchDirectory = createRecursiveDirectoryWatcher ( {
314314 directoryExists : path => this . directoryExists ( path ) ,
315- getAccessileSortedChildDirectories : path => this . getDirectories ( path ) ,
315+ getAccessibleSortedChildDirectories : path => this . getDirectories ( path ) ,
316316 filePathComparer : this . useCaseSensitiveFileNames ? compareStringsCaseSensitive : compareStringsCaseInsensitive ,
317317 watchDirectory,
318318 realpath : s => this . realpath ( s )
@@ -322,7 +322,7 @@ interface Array<T> {}`
322322 const watchDirectory : HostWatchDirectory = ( directory , cb ) => this . watchDirectory ( directory , fileName => cb ( fileName ) , /*recursive*/ false ) ;
323323 this . customRecursiveWatchDirectory = createRecursiveDirectoryWatcher ( {
324324 directoryExists : path => this . directoryExists ( path ) ,
325- getAccessileSortedChildDirectories : path => this . getDirectories ( path ) ,
325+ getAccessibleSortedChildDirectories : path => this . getDirectories ( path ) ,
326326 filePathComparer : this . useCaseSensitiveFileNames ? compareStringsCaseSensitive : compareStringsCaseInsensitive ,
327327 watchDirectory,
328328 realpath : s => this . realpath ( s )
@@ -333,7 +333,7 @@ interface Array<T> {}`
333333 const watchDirectory : HostWatchDirectory = ( directory , cb ) => watchFile ( directory , ( ) => cb ( directory ) , PollingInterval . Medium ) ;
334334 this . customRecursiveWatchDirectory = createRecursiveDirectoryWatcher ( {
335335 directoryExists : path => this . directoryExists ( path ) ,
336- getAccessileSortedChildDirectories : path => this . getDirectories ( path ) ,
336+ getAccessibleSortedChildDirectories : path => this . getDirectories ( path ) ,
337337 filePathComparer : this . useCaseSensitiveFileNames ? compareStringsCaseSensitive : compareStringsCaseInsensitive ,
338338 watchDirectory,
339339 realpath : s => this . realpath ( s )
0 commit comments