Skip to content

Commit 3c687f5

Browse files
committed
remove the words "out of memory" from an assert, it confuses CAS
1 parent 2c67a82 commit 3c687f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Runtime/Library/JavascriptError.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace Js
2929

3030
bool JavascriptError::Is(Var aValue)
3131
{
32-
AssertMsg(aValue != NULL, "Error is NULL - did it come from an out of memory exception?");
32+
AssertMsg(aValue != NULL, "Error is NULL - did it come from an oom exception?");
3333
return JavascriptOperators::GetTypeId(aValue) == TypeIds_Error;
3434
}
3535

0 commit comments

Comments
 (0)