changeset 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 9bd08b3d5299
children 23834ba9736a
files compile/c/cdouble_12_B.d compile/c/cfloat_12_B.d compile/c/creal_37_B.d
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/compile/c/cdouble_12_B.d	Tue Sep 09 16:42:11 2008 +0200
+++ b/compile/c/cdouble_12_B.d	Tue Sep 09 16:53:58 2008 +0200
@@ -19,7 +19,7 @@
 
 
 template getImaginaryPart(cdouble x){
-	const double getImanginaryPart = x.im;
+	const double getImaginaryPart = x.im;
 }
 
 static assert(getImaginaryPart!(a) == 2.0);
--- a/compile/c/cfloat_12_B.d	Tue Sep 09 16:42:11 2008 +0200
+++ b/compile/c/cfloat_12_B.d	Tue Sep 09 16:53:58 2008 +0200
@@ -19,7 +19,7 @@
 
 
 template getImaginaryPart(cfloat x){
-	const float getImanginaryPart = x.im;
+	const float getImaginaryPart = x.im;
 }
 
 static assert(getImaginaryPart!(a) == 2.0f);
--- a/compile/c/creal_37_B.d	Tue Sep 09 16:42:11 2008 +0200
+++ b/compile/c/creal_37_B.d	Tue Sep 09 16:53:58 2008 +0200
@@ -19,7 +19,7 @@
 
 
 template getImaginaryPart(creal x){
-	const real getImanginaryPart = x.im;
+	const real getImaginaryPart = x.im;
 }
 
 static assert(getImaginaryPart!(a) == 2.0L);