Skip to content

Commit

Permalink
Fix typo (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
songww authored Jan 13, 2021
1 parent 4868d4c commit 56eb460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UpgradeGuide4to5.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ let fft_forward1 = planner.plan_fft(1234, FftDirection::Forward);
let fft_forward2 = planner.plan_fft_forward(1234);

let fft_inverse1 = planner.plan_fft(1234, FftDirection::Inverse);
let fft_unverse2 = planner.plan_fft_inverse(1234);
let fft_inverse2 = planner.plan_fft_inverse(1234);
```

## Fft Trait Methods
Expand Down

0 comments on commit 56eb460

Please sign in to comment.