Merge pull request #1260 from WarrenWeckesser/use-assert-macro

DOC: Fix compiler warning in the first example in lib.rs.
This commit is contained in:
Andreas Borgen Longva 2023-08-14 08:53:24 +02:00 committed by GitHub
commit 69b46cb7fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ explicitly, and call free-functions using the `na::` prefix:
```
#[macro_use]
extern crate approx; // For the macro relative_eq!
extern crate approx; // For the macro assert_relative_eq!
extern crate nalgebra as na;
use na::{Vector3, Rotation3};