Fixed typo

This commit is contained in:
YakoYakoYokuYoku 2019-02-21 11:09:38 -03:00 committed by GitHub
parent 354675a55c
commit 13790264b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1917,7 +1917,7 @@ pub trait CommonFloat where Self: Num + Copy + NumCast + Neg<Output = Self> {
///
/// let difference = a.pown(b);
///
/// assert(difference > 3.9f64);
/// assert!(difference > 3.9f64);
/// ```
fn pown(self, n: Self) -> Self;