fix couple typos

This commit is contained in:
2024-11-02 02:21:18 -05:00
parent 437f984b11
commit fa3bce9237
2 changed files with 2 additions and 2 deletions

View File

@@ -310,7 +310,7 @@ public struct FFT<T: FFTElement>: ~Copyable {
fatalError("signal buffer too small")
}
guard output.count >= n else {
fatalError("outputbuffer too small")
fatalError("output buffer too small")
}
ScalarType.pffftZreorder(ptr, spectrum.baseAddress, rebind(output), .forward)
}