Skip to content

Commit

Permalink
Fix small documentation typo
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelCarlos committed Jul 2, 2022
1 parent 9f932bc commit 1e57d02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [2.1.2] - 02 Jul 2022

### Fixed

- Documentation typos.

## [2.1.1] - 22 Jan 2022

### Fixed
Expand Down Expand Up @@ -97,7 +103,8 @@

- Add support for Xcode 10.2 and Swift 5.

[Unreleased]: https://github.com/manuelCarlos/Easing/compare/2.1.1...head
[Unreleased]: https://github.com/manuelCarlos/Easing/compare/2.1.2...head
[2.1.1]: https://github.com/manuelCarlos/Easing/compare/2.1.1...2.1.2
[2.1.1]: https://github.com/manuelCarlos/Easing/compare/2.1.0...2.1.1
[2.1.0]: https://github.com/manuelCarlos/Easing/compare/2.0.7...2.1.0
[2.0.7]: https://github.com/manuelCarlos/Easing/compare/2.0.6...2.0.7
Expand Down
2 changes: 1 addition & 1 deletion Sources/Easing/Easing.swift
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ private func cubicEaseInOut <T: Real> (_ x: T) -> T {
///
/// y = x^4
///
/// - Parameter x: The FloatingPointvalue for the time axis of the function, typically 0 <= x <= 1.
/// - Parameter x: The `Real` for the time axis of the function, typically 0 <= x <= 1.
/// - Returns: A `Real` value.
private func quarticEaseIn <T: Real> (_ x: T) -> T {
return x * x * x * x
Expand Down

0 comments on commit 1e57d02

Please sign in to comment.