Skip to content

Commit

Permalink
Update dense.rs
Browse files Browse the repository at this point in the history
Fixed typo
  • Loading branch information
tbetcke authored Mar 16, 2024
1 parent 6f5775d commit 927e4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proc-macro/src/dense.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub(crate) fn rlst_static_array_impl(items: TokenStream) -> TokenStream {

let output = quote! { {
let data = rlst::dense::data_container::ArrayContainer::<#ty, #ndim>::new();
rlst::dense::array::Array::new(rlst_dense::base_array::BaseArray::new(data, [#(#dims),*]))
rlst::dense::array::Array::new(rlst::dense::base_array::BaseArray::new(data, [#(#dims),*]))
}
};

Expand Down

0 comments on commit 927e4f5

Please sign in to comment.