Skip to content

Commit c837076

Browse files
committed
remove unnecessary semicolon
1 parent 5f658d2 commit c837076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/solveh.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fn solve() -> Result<(), error::LinalgError> {
1010
let b: Array1<c64> = random(3);
1111
println!("b = {:?}", &b);
1212
let x = a.solveh(&b)?;
13-
println!("Ax = {:?}", a.dot(&x));;
13+
println!("Ax = {:?}", a.dot(&x));
1414
Ok(())
1515
}
1616

0 commit comments

Comments
 (0)