refact 0.3.0.0 → 0.3.0.1
raw patch · 3 files changed
+10/−3 lines, 3 files
Files
- CHANGELOG +5/−1
- refact.cabal +1/−1
- src/Refact/Types.hs +4/−1
CHANGELOG view
@@ -1,4 +1,8 @@-#+# 0.3.0.1++* Fix documentation++# 0.3 * Added `Import` to `RType`. * Added an rtype field to `Delete`.
refact.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: refact-version: 0.3.0.0+version: 0.3.0.1 synopsis: Specify refactorings to perform with apply-refact description: This library provides a datatype which can be interpreted by apply-refact. It exists as a seperate library so that applications can specify refactorings without depending on GHC.
src/Refact/Types.hs view
@@ -38,7 +38,10 @@ rtype :: RType , pos :: a }- | RemoveAsKeyword { -- ^ Takes the position of a import decl and removes the as keyword++ | -- | Takes the position of a import decl and removes the as keyword+ RemoveAsKeyword+ { pos :: a } -- | Rename {