Run utils/trim-trailing-whitespace.py on codebase

This commit is contained in:
Tom Henderson
2022-06-05 21:01:11 -07:00
parent 7c47d8af08
commit b6a5ee8151
1385 changed files with 16008 additions and 16008 deletions

View File

@@ -64,10 +64,10 @@ void Create2DPlotFile ()
for (x = -5.0; x <= +5.0; x += 1.0)
{
// Calculate the 2-D curve
//
//
// 2
// y = x .
//
//
y = x * x;
// Add this point.
@@ -131,10 +131,10 @@ void Create2DPlotWithErrorBarsFile ()
for (x = -5.0; x <= +5.0; x += 1.0)
{
// Calculate the 2-D curve
//
//
// 2
// y = x .
//
//
y = x * x;
// Make the uncertainty in the x direction be constant and make
@@ -213,10 +213,10 @@ void Create3DPlotFile ()
for (y = -5.0; y <= +5.0; y += 1.0)
{
// Calculate the 3-D surface
//
//
// 2 2
// z = x * y .
//
//
z = x * x * y * y;
// Add this point.