Skip to content
Snippets Groups Projects
Commit 019a62a8 authored by Brian Terlson's avatar Brian Terlson
Browse files

Merge pull request #7 from JaimeLynSchatz/JaimeLynSchatz/fixBugz1552

fix point of view typos from Bugzilla 1552
parents 4f15bf99 a5fda120
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ var __err = new Error;
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (!(__err instanceof Error)) {
$ERROR('#1: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#1: TypeError is subclass of Error from instanceof operator point of view');
}
//
//////////////////////////////////////////////////////////////////////////////
......@@ -21,7 +21,7 @@ if (!(__err instanceof Error)) {
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (__err instanceof TypeError) {
$ERROR('#2: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#2: TypeError is subclass of Error from instanceof operator point of view');
}
//
//////////////////////////////////////////////////////////////////////////////
......@@ -31,7 +31,7 @@ var err__ = Error('failed');
//////////////////////////////////////////////////////////////////////////////
//CHECK#3
if (!(err__ instanceof Error)) {
$ERROR('#3: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#3: TypeError is subclass of Error from instanceof operator point of view');
}
//
//////////////////////////////////////////////////////////////////////////////
......@@ -39,7 +39,7 @@ if (!(err__ instanceof Error)) {
//////////////////////////////////////////////////////////////////////////////
//CHECK#4
if (err__ instanceof TypeError) {
$ERROR('#4: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#4: TypeError is subclass of Error from instanceof operator point of view');
}
//
//////////////////////////////////////////////////////////////////////////////
......
......@@ -12,12 +12,12 @@ var __t__err = new TypeError;
//CHECK#1
if (!(__t__err instanceof Error)) {
$ERROR('#1: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#1: TypeError is subclass of Error from instanceof operator point of view');
}
//CHECK#2
if (!(__t__err instanceof TypeError)) {
$ERROR('#2: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#2: TypeError is subclass of Error from instanceof operator point of view');
}
//////////////////////////////////////////////////////////////////////////////
......@@ -25,12 +25,12 @@ var err__t__ = TypeError('failed');
//CHECK#3
if (!(err__t__ instanceof Error)) {
$ERROR('#3: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#3: TypeError is subclass of Error from instanceof operator point of view');
}
//CHECK#4
if (!(err__t__ instanceof TypeError)) {
$ERROR('#4: TypeError is subclass of Error from instanceof operator poit of view');
$ERROR('#4: TypeError is subclass of Error from instanceof operator point of view');
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment