Skip to content
Snippets Groups Projects
Commit a5fda120 authored by JaimeLynSchatz's avatar JaimeLynSchatz
Browse files

fix point of view typos from Bugzilla 1552

parent 9b669da6
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ var __err = new Error; ...@@ -13,7 +13,7 @@ var __err = new Error;
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//CHECK#1 //CHECK#1
if (!(__err instanceof Error)) { 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)) { ...@@ -21,7 +21,7 @@ if (!(__err instanceof Error)) {
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//CHECK#2 //CHECK#2
if (__err instanceof TypeError) { 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'); ...@@ -31,7 +31,7 @@ var err__ = Error('failed');
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//CHECK#3 //CHECK#3
if (!(err__ instanceof Error)) { 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)) { ...@@ -39,7 +39,7 @@ if (!(err__ instanceof Error)) {
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//CHECK#4 //CHECK#4
if (err__ instanceof TypeError) { 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; ...@@ -12,12 +12,12 @@ var __t__err = new TypeError;
//CHECK#1 //CHECK#1
if (!(__t__err instanceof Error)) { 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 //CHECK#2
if (!(__t__err instanceof TypeError)) { 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'); ...@@ -25,12 +25,12 @@ var err__t__ = TypeError('failed');
//CHECK#3 //CHECK#3
if (!(err__t__ instanceof Error)) { 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 //CHECK#4
if (!(err__t__ instanceof TypeError)) { 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