Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.

Commit 98f51e9

Browse files
committed
Typo fix, added missing function
The os module has both `tmpdir` and `tmpDir`, but no `tmddir` ;)
1 parent ee43199 commit 98f51e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

os.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ var os = {};
3333
* @return {string}
3434
* @nosideeffects
3535
*/
36-
os.tmdDir = function() {};
36+
os.tmpdir = function() {};
37+
os.tmpDir = function() {};
3738

3839
/**
3940
* @return {string}

0 commit comments

Comments
 (0)