Skip to content

Commit 97e6cfb

Browse files
committed
Fix special character
1 parent a95738b commit 97e6cfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fourierflow/commands/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def plot_poster_pde_inference():
570570
sim_line = Line2D(range(1), range(1), color="white",
571571
marker='o', markerfacecolor=pal[4])
572572
lines = [sim_line] + lines
573-
labels = ['CrankNicolson method',
573+
labels = ['Crank-Nicolson method',
574574
'FNO [Li et al., 2021a]',
575575
'F-FNO (our full model)']
576576
ax.legend(lines, labels)

0 commit comments

Comments
 (0)