From a5fda120de2a1f3830014703515fdf82b7468f53 Mon Sep 17 00:00:00 2001
From: JaimeLynSchatz <jaimelynschatz@gmail.com>
Date: Sun, 26 Jan 2014 14:55:44 -0800
Subject: [PATCH] fix point of view typos from Bugzilla 1552

---
 test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T1.js | 8 ++++----
 test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T2.js | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T1.js b/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T1.js
index 66d61034cf..a021a9ac35 100644
--- a/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T1.js
+++ b/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T1.js
@@ -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');
 }
 //
 //////////////////////////////////////////////////////////////////////////////
diff --git a/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T2.js b/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T2.js
index 340f09ff4d..8a9814a522 100644
--- a/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T2.js
+++ b/test/suite/ch11/11.8/11.8.6/S11.8.6_A5_T2.js
@@ -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');
 }