From d2ec5c23cf14dda7c214d87ae5c9b34e2e0b18e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Sat, 13 Mar 2010 13:21:21 -0700 Subject: [PATCH] Fixed typo in comment for require.registerExtension(). --- src/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.js b/src/node.js index 7b952fd53e..0d08a70009 100644 --- a/src/node.js +++ b/src/node.js @@ -630,7 +630,7 @@ function loadModule (request, parent, callback) { // This function allows the user to register file extensions to custom // Javascript 'compilers'. It accepts 2 arguments, where ext is a file // extension as a string. E.g. '.coffee' for coffee-script files. compiler -// is the second argument, which is a function that gets called then the +// is the second argument, which is a function that gets called when the // specified file extension is found. The compiler is passed a single // argument, which is, the file contents, which need to be compiled. //