From 006e34b97b5396599cb05d74e6f3c4faf8e3e95f Mon Sep 17 00:00:00 2001 From: Alexei Kozachenko Date: Mon, 24 Sep 2018 18:07:48 -0400 Subject: [PATCH] fixed a typo --- src/filesystem/implementation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem/implementation.js b/src/filesystem/implementation.js index 139d434..590a787 100644 --- a/src/filesystem/implementation.js +++ b/src/filesystem/implementation.js @@ -1681,7 +1681,7 @@ function mkdir(fs, context, path, mode, callback) { function mkdtemp(fs, context, prefix, options, callback) { callback = arguments[arguments.length - 1]; - // this function is ised to generate a random character set to append + // this function is used to generate a random character set to append // to tmp dir name to make sure it is unique function generateRandom() { return 'xxxxxx'.replace(/[xy]/g, function(c) {