Skip to content
Snippets Groups Projects
Commit 0658c2d3 authored by Cristian Lalescu's avatar Cristian Lalescu
Browse files

fix typos

parent b1d4f6a2
No related branches found
No related tags found
No related merge requests found
Pipeline #77159 passed
......@@ -4,7 +4,7 @@
#include "kspace.hpp"
template <field_backend be,
kspace_dealias type dt>
kspace_dealias_type dt>
class spectrum_function
{
private:
......@@ -14,7 +14,7 @@ class spectrum_function
public:
spectrum_function(
const kspace<be, dt> *KK,
const std::vector &source_values):
const std::vector<double> &source_values):
kk(KK),
values(source_values)
{
......@@ -29,4 +29,4 @@ class spectrum_function
assert(index < this->values.size());
return this->values[index];
}
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment