summaryrefslogtreecommitdiff
path: root/std/fs
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-10-03 13:19:11 -0700
committerGitHub <noreply@github.com>2020-10-04 07:19:11 +1100
commitd0eb179132c60a7c2513c9d19db03e3d5ca00c70 (patch)
tree627339e0dc2212ed861184d46b6af31605224d24 /std/fs
parent391eed42f41bd277fff936192b474bfd52eaa1a0 (diff)
docs: end sentences with a period in markdown (#7813)
Diffstat (limited to 'std/fs')
-rw-r--r--std/fs/README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/std/fs/README.md b/std/fs/README.md
index 73d0abbf1..e2483df1e 100644
--- a/std/fs/README.md
+++ b/std/fs/README.md
@@ -5,7 +5,7 @@ fs module is made to provide helpers to manipulate the filesystem.
## Usage
Most the following modules are exposed in `mod.ts` This feature is currently
-<b>unstable</b>. To enable it use `deno run --unstable`
+<b>unstable</b>. To enable it use `deno run --unstable`.
### emptyDir
@@ -23,7 +23,7 @@ emptyDirSync("./foo"); // void
### ensureDir
Ensures that the directory exists. If the directory structure does not exist, it
-is created. Like mkdir -p.
+is created. Like `mkdir -p`.
```ts
import { ensureDir, ensureDirSync } from "https://deno.land/std/fs/mod.ts";
@@ -83,7 +83,7 @@ format(CRLFinput, EOL.LF); // output "deno\nis not\nnode"
### exists
-Test whether or not the given path exists by checking with the file system
+Test whether or not the given path exists by checking with the file system.
```ts
import { exists, existsSync } from "https://deno.land/std/fs/mod.ts";
@@ -94,7 +94,7 @@ existsSync("./foo"); // returns boolean
### move
-Moves a file or directory. Overwrites it if option provided
+Moves a file or directory. Overwrites it if option provided.
```ts
import { move, moveSync } from "https://deno.land/std/fs/mod.ts";
@@ -107,7 +107,7 @@ moveSync("./foo", "./existingFolder", { overwrite: true });
### copy
-copy a file or directory. Overwrites it if option provided
+copy a file or directory. Overwrites it if option provided.
```ts
import { copy, copySync } from "https://deno.land/std/fs/mod.ts";