Skip to content

Commit

Permalink
Corrects typos and rename 1978 to 1979.rst
Browse files Browse the repository at this point in the history
Correct a few typos and rename news/1978 to news/1979
  • Loading branch information
angelmons committed Sep 4, 2024
1 parent a0a2d05 commit c0831cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions landlab/components/river_flow_dynamics/river_flow_dynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@
>>> flow_depth = np.reshape(grid["node"]["surface_water__depth"], (nRows, nCols))[10, :]
The average (absolute) difference between predited and expected
floe depth in percentage is:
flow depth in percentage is:
>>> np.round(np.abs(np.mean(flow_depth_expected - flow_depth)) * 100, 1)
>>> np.round(np.abs(np.mean(flow_depth_expected - flow_depth)) * 100, 0)
0.0
And the velocity at links along the center of the channel
Expand Down Expand Up @@ -278,7 +278,7 @@
The average (absolute) difference between predited and expected
flow velocity in percentage is:
>>> np.round(np.abs(np.mean(flow_velocity_expected - flow_velocity)) * 100, 1)
>>> np.round(np.abs(np.mean(flow_velocity_expected - flow_velocity)) * 100, 0)
0.0
Expand Down
File renamed without changes.

0 comments on commit c0831cf

Please sign in to comment.