Skip to content

Commit ec2c6d7

Browse files
authored
remove outdated ref to route_flow
Tweak to remove an outdated method name in a comment, related to new use of FlowAccumulator
1 parent 35c8874 commit ec2c6d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

component_tutorial/component_tutorial.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@
557557
"source": [
558558
"for i in range(nt):\n",
559559
" # lin_diffuse.run_one_step(dt) no diffusion this time\n",
560-
" fr.run_one_step() # route_flow isn't time sensitive, so it doesn't take dt as input\n",
560+
" fr.run_one_step() # run_one_step isn't time sensitive, so it doesn't take dt as input\n",
561561
" sp.run_one_step(dt)\n",
562562
" mg.at_node['topographic__elevation'][mg.core_nodes] += uplift_per_step # add the uplift\n",
563563
" if i % 20 == 0:\n",
@@ -629,7 +629,7 @@
629629
"z[:] = initial_roughness\n",
630630
"for i in range(nt):\n",
631631
" lin_diffuse.run_one_step(dt) # no diffusion this time\n",
632-
" fr.run_one_step() # route_flow isn't time sensitive, so it doesn't take dt as input\n",
632+
" fr.run_one_step() # run_one_step isn't time sensitive, so it doesn't take dt as input\n",
633633
" sp.run_one_step(dt)\n",
634634
" mg.at_node['topographic__elevation'][mg.core_nodes] += uplift_per_step # add the uplift\n",
635635
" if i % 20 == 0:\n",

0 commit comments

Comments
 (0)