Skip to content

Commit 4f08820

Browse files
author
Jon Drobny
committed
Fix variable assignment.
1 parent 351ade8 commit 4f08820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1689,7 +1689,7 @@ pub fn rotate_back_vec_py(nx: Vec<f64>, ny: Vec<f64>, nz: Vec<f64>, ux: Vec<f64>
16891689
let mut uz_mut = uz_;
16901690
rotate_back(nx_, ny_, nz_, &mut ux_mut, &mut uy_mut, &mut uz_mut);
16911691

1692-
(ux_, (uy_, uz_))
1692+
(ux_mut, (uy_mut, uz_mut))
16931693
}).unzip();
16941694

16951695
(ux_new, uy_new, uz_new)

0 commit comments

Comments
 (0)