Canonicalise 2-tailed vs. 2-sided
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 21 Aug 2010 08:37:02 +0000 (10:37 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 21 Aug 2010 08:37:02 +0000 (10:37 +0200)
src/language/stats/crosstabs.q

index 72c36555f03ac762d68ac67be1a28c26fdd2d619..f75e249e8fdd3bba0363a9a26240aedd30ad16e3 100644 (file)
@@ -1214,11 +1214,11 @@ create_chisq_table (struct pivot_table *pt)
   tab_text (chisq, 1, 0, TAB_RIGHT | TAT_TITLE, _("Value"));
   tab_text (chisq, 2, 0, TAB_RIGHT | TAT_TITLE, _("df"));
   tab_text (chisq, 3, 0, TAB_RIGHT | TAT_TITLE,
-            _("Asymp. Sig. (2-sided)"));
+            _("Asymp. Sig. (2-tailed)"));
   tab_text (chisq, 4, 0, TAB_RIGHT | TAT_TITLE,
-            _("Exact Sig. (2-sided)"));
+            _("Exact Sig. (2-tailed)"));
   tab_text (chisq, 5, 0, TAB_RIGHT | TAT_TITLE,
-            _("Exact Sig. (1-sided)"));
+            _("Exact Sig. (1-tailed)"));
   tab_offset (chisq, 0, 1);
 
   return chisq;