radian 0.0.4 → 0.0.5
raw patch · 3 files changed
+8/−4 lines, 3 files
Files
- changelog +4/−0
- radian.cabal +3/−3
- src/Data/Radian.hs +1/−1
changelog view
@@ -1,3 +1,7 @@+0.0.5++* Fix documentation.+ 0.0.4 * Delete the `Radians` data type -- just use raw floating-point types.
radian.cabal view
@@ -1,16 +1,16 @@ name: radian-version: 0.0.4+version: 0.0.5 license: BSD3 license-file: LICENCE author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ> maintainer: Tony Morris copyright: Copyright (C) 2014 NICTA Limited-synopsis: A floating-point wrapper for measurements that use radians.+synopsis: Isomorphisms for measurements that use radians. category: Development description: <<http://i.imgur.com/Ns5hntl.jpg>> .- A floating-point wrapper for measurements that use radians.+ Isomorphisms for measurements that use radians. homepage: https://github.com/NICTA/radian bug-reports: https://github.com/NICTA/radian/issues cabal-version: >= 1.10
src/Data/Radian.hs view
@@ -18,7 +18,7 @@ -- >>> toRadians # (180 :: Double) -- 3.141592653589793 ----- >> toRadians # (90 :: Double)+-- >>> toRadians # (90 :: Double) -- 1.5707963267948966 -- -- >>> toRadians # (359 :: Double)