Skip to content

Commit ae4a548

Browse files
authored
Fix typo in Closure extern (#22902)
Prevents Closure compiler from mangling `require('os').tmpdir()`.
1 parent f15419f commit ae4a548

File tree

1 file changed

+1
-1
lines changed
  • third_party/closure-compiler/node-externs

1 file changed

+1
-1
lines changed

third_party/closure-compiler/node-externs/os.js

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

3838
/**
3939
* @return {string}

0 commit comments

Comments
 (0)