diff options
| author | JR Heard <jrheard@cs.stanford.edu> | 2020-08-22 22:21:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-22 22:21:03 -0700 |
| commit | 69d3334adf9d7042546aba741bca7fc7b0ffd2bc (patch) | |
| tree | 8dfe54dffbe47ecac2e1de0041f5a00d36030db5 | |
| parent | e482c86b9de32c6392cb83aa97d72e22425163f9 (diff) | |
| download | rust-69d3334adf9d7042546aba741bca7fc7b0ffd2bc.tar.gz rust-69d3334adf9d7042546aba741bca7fc7b0ffd2bc.zip | |
Fix typo in documentation of i32 wrapping_abs()
| -rw-r--r-- | library/core/src/num/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/mod.rs b/library/core/src/num/mod.rs index 68937176270..7a88cfbb74d 100644 --- a/library/core/src/num/mod.rs +++ b/library/core/src/num/mod.rs @@ -1573,7 +1573,7 @@ $EndFeature, " the boundary of the type. The only case where such wrapping can occur is when one takes the absolute value of the negative -minimal value for the type this is a positive value that is too large to represent in the type. In +minimal value for the type; this is a positive value that is too large to represent in the type. In such a case, this function returns `MIN` itself. # Examples |
