summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2010-12-13 18:51:31 -0500
committerMathias Stearn <mathias@10gen.com>2010-12-13 19:02:27 -0500
commit623ad9da1ad8495e9324cc95ee6fff8fb05a7ee9 (patch)
treeac67169b92c0cf3be2709fd5955c871ccfa77018 /shell
parente1bcc6b3a2893342f6e23d781c3d5fcc39af38e5 (diff)
downloadmongo-623ad9da1ad8495e9324cc95ee6fff8fb05a7ee9.tar.gz
fix off-by-one in spidermonkey line numbering SERVER-2215
Diffstat (limited to 'shell')
-rw-r--r--shell/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/utils.js b/shell/utils.js
index efa62795b06..610fd3d485b 100644
--- a/shell/utils.js
+++ b/shell/utils.js
@@ -18,7 +18,7 @@ friendlyEqual = function( a , b ){
printStackTrace = function(){
try{
- throw new Error("Printing Stack Trace (lines are 0-based in spidermonkey)");
+ throw new Error("Printing Stack Trace");
} catch (e) {
print(e.stack);
}