Capitalize function names in gnuplot example
authorMitch Watrous <watrous@u.washington.edu>
Thu, 08 Sep 2011 18:24:47 -0700
changeset 7481 e52db23c9c8b
parent 7480 af0f3525d3ec
child 7482 35c01487f7f7
Capitalize function names in gnuplot example
src/tools/examples/gnuplot-example.cc
--- a/src/tools/examples/gnuplot-example.cc	Thu Sep 08 17:35:18 2011 -0700
+++ b/src/tools/examples/gnuplot-example.cc	Thu Sep 08 18:24:47 2011 -0700
@@ -27,13 +27,13 @@
 namespace {
 
 //===========================================================================
-// Function: create2DPlotFile
+// Function: Create2DPlotFile
 //
 //
 // This function creates a 2-D plot file.
 //===========================================================================
 
-void create2DPlotFile ()
+void Create2DPlotFile ()
 {
   using namespace std;
 
@@ -95,13 +95,13 @@
 
 
 //===========================================================================
-// Function: create2DPlotWithErrorBarsFile
+// Function: Create2DPlotWithErrorBarsFile
 //
 //
 // This function creates a 2-D plot with error bars file.
 //===========================================================================
 
-void create2DPlotWithErrorBarsFile ()
+void Create2DPlotWithErrorBarsFile ()
 {
   using namespace std;
 
@@ -175,13 +175,13 @@
 
 
 //===========================================================================
-// Function: create3DPlotFile
+// Function: Create3DPlotFile
 //
 //
 // This function creates a 3-D plot file.
 //===========================================================================
 
-void create3DPlotFile ()
+void Create3DPlotFile ()
 {
   using namespace std;
 
@@ -265,13 +265,13 @@
 int main (int argc, char *argv[])
 {
   // Create a 2-D plot file.
-  create2DPlotFile();
+  Create2DPlotFile();
 
   // Create a 2-D plot with error bars file.
-  create2DPlotWithErrorBarsFile();
+  Create2DPlotWithErrorBarsFile();
 
   // Create a 3-D plot file.
-  create3DPlotFile();
+  Create3DPlotFile();
 
   return 0;
 }