Merge pull request #7 from JaimeLynSchatz/JaimeLynSchatz/fixBugz1552

fix point of view typos from Bugzilla 1552
This commit is contained in:
Brian Terlson 2014-07-10 13:45:37 -07:00
commit 019a62a863
2 changed files with 8 additions and 8 deletions

View File

@ -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)) {
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//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');
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//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)) {
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
//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');
} }
// //
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////

View File

@ -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');
//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');
} }