diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-16 20:48:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 20:48:50 +0100 |
commit | 636af2850c90f6bf7005a270d95b68bc9718de75 (patch) | |
tree | 9ebffa025237f1ef42226e3168780beac2768b95 /cli/fmt.rs | |
parent | 8ab20a4582016542ac3d8140593f817ab920005f (diff) |
refactor(cli): rename fs module to fs_util (#8380)
This commit renames "fs" module in "cli/" to "fs_util". This is purely
cosmetic change; there were a few places which aliased "crate::fs"
to "deno_fs" which was very confusing with "fs" module in ops.
Diffstat (limited to 'cli/fmt.rs')
-rw-r--r-- | cli/fmt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/fmt.rs b/cli/fmt.rs index 9bb4dbc82..0036436c1 100644 --- a/cli/fmt.rs +++ b/cli/fmt.rs @@ -9,7 +9,7 @@ use crate::colors; use crate::diff::diff; -use crate::fs::{collect_files, is_supported_ext}; +use crate::fs_util::{collect_files, is_supported_ext}; use crate::text_encoding; use deno_core::error::generic_error; use deno_core::error::AnyError; |