Skip to content

Commit

Permalink
Fix typo in code comment for Tutorial-Finite_Difference_Derivatives-F…
Browse files Browse the repository at this point in the history
…Dtable_soln.ipynb
  • Loading branch information
zachetienne committed Sep 10, 2018
1 parent 0865de6 commit 0d86c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tutorial-Finite_Difference_Derivatives-FDtable_soln.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
" numpy_matrix[rowcount, column_corresponding_to_zero_fd_point + fdstencl[i][0]] = fdcoeffs[i]\n",
" rowcount += 1\n",
"\n",
"# Step 4: Construct the first-order derivative finite difference coefficients\n",
"# Step 4: Construct the second-order derivative finite difference coefficients\n",
"for fdorder in range(2, max_fdorder+1, 2): # loop runs from 2 to max_fdorder inclusive, skipping odd orders.\n",
" numpy_matrix[rowcount, 0] = \"2nd\"\n",
" numpy_matrix[rowcount, 1] = fdorder\n",
Expand Down

0 comments on commit 0d86c32

Please sign in to comment.