Skip to content

Commit

Permalink
Whitespace in function docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Jul 28, 2024
1 parent e52d764 commit 365e1af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/accurate/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use super::Z0;
///
/// ```
/// use lambert_w::accurate::lambert_w_0;
///
/// use approx::assert_abs_diff_eq;
/// use core::f64::consts::PI;
///
Expand All @@ -35,6 +36,7 @@ pub fn lambert_w_0(z: f64) -> Option<f64> {
///
/// ```
/// use lambert_w::accurate::lambert_w_m1;
///
/// use approx::assert_abs_diff_eq;
/// use core::f64::consts::PI;
///
Expand Down
2 changes: 2 additions & 0 deletions src/fast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ use swm1::swm1;
///
/// ```
/// use lambert_w::fast::lambert_w_0;
///
/// use approx::assert_abs_diff_eq;
/// use core::f64::consts::PI;
///
Expand All @@ -33,6 +34,7 @@ pub fn lambert_w_0(z: f64) -> Option<f64> {
///
/// ```
/// use lambert_w::fast::lambert_w_m1;
///
/// use approx::assert_abs_diff_eq;
/// use core::f64::consts::PI;
///
Expand Down

0 comments on commit 365e1af

Please sign in to comment.