Skip to content

Commit

Permalink
clean up the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ATTron committed Jul 7, 2024
1 parent 382b19c commit 4e7797a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pub fn main() !void {
for (test_sc.orbit_predictions.items) |iter| {
const r = math.sqrt(iter.state[0] * iter.state[0] + iter.state[1] * iter.state[1] + iter.state[2] * iter.state[2]);
std.debug.print("Next Prediction is: {any}", .{r});
std.debug.print("Next Prediction is: {any}\n", .{r});
}
}
```
Expand Down

0 comments on commit 4e7797a

Please sign in to comment.