Skip to content

Commit

Permalink
FIX: set correct L value in labels
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed May 20, 2024
1 parent f93cd44 commit 84a0749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/usage/dynamics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
"\n",
"for i in range(5):\n",
" y_values = bl2_func(x_values, L=i)\n",
" ax.plot(x_values, y_values, color=f\"C{i}\", label=f\"$L={L}$\")\n",
" ax.plot(x_values, y_values, color=f\"C{i}\", label=f\"$L={i}$\")\n",
"ax.legend()\n",
"fig.show()"
]
Expand Down

0 comments on commit 84a0749

Please sign in to comment.