[LON-CAPA-cvs] cvs: loncom /xml lonplot.pm

matthew lon-capa-cvs@mail.lon-capa.org
Fri, 19 Sep 2003 20:05:29 -0000


matthew		Fri Sep 19 16:05:29 2003 EDT

  Modified files:              
    /loncom/xml	lonplot.pm 
  Log:
  Far better to have tic marks on your graph than tick marks.  Ugh.
  
  
Index: loncom/xml/lonplot.pm
diff -u loncom/xml/lonplot.pm:1.89 loncom/xml/lonplot.pm:1.90
--- loncom/xml/lonplot.pm:1.89	Fri Sep 19 13:53:03 2003
+++ loncom/xml/lonplot.pm	Fri Sep 19 16:05:29 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Dynamic plot
 #
-# $Id: lonplot.pm,v 1.89 2003/09/19 17:53:03 matthew Exp $
+# $Id: lonplot.pm,v 1.90 2003/09/19 20:05:29 matthew Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -298,41 +298,41 @@
      location => {
 	 default => 'border', 
 	 test => sub {$_[0]=~/^(border|axis)$/},
-	 description => 'Location of major tick marks',
+	 description => 'Location of major tic marks',
 	 edit_type   => 'choice',
 	 choices     => ['border','axis']
 	 },
      mirror => {
 	 default => 'on', 
 	 test => $onoff_test,
-	 description => 'mirror ticks on opposite axis?',
+	 description => 'mirror tics on opposite axis?',
 	 edit_type   => 'onoff'
 	 },
      start => {
 	 default => '-10.0',
 	 test => $real_test,
-	 description => 'Start major ticks at',
+	 description => 'Start major tics at',
 	 edit_type   => 'entry',
 	 size        => '10'
 	 },
      increment => {
 	 default => '1.0',
 	 test => $real_test,
-	 description => 'Place a major tick every',
+	 description => 'Place a major tic every',
 	 edit_type   => 'entry',
 	 size        => '10'
 	 },
      end => {
 	 default => ' 10.0',
 	 test => $real_test,
-	 description => 'Stop major ticks at ',
+	 description => 'Stop major tics at ',
 	 edit_type   => 'entry',
 	 size        => '10'
 	 },
      minorfreq => {
 	 default => '0',
 	 test => $int_test,
-	 description => 'Number of minor tics between major tick marks',
+	 description => 'Number of minor tics between major tic marks',
 	 edit_type   => 'entry',
 	 size        => '10'
 	 },