Source: haskell-language-haskell-extract
Version: 0.2.4-3
Tags: patch
Severity: minor

(Hopefully the patch is self-explanatory. If not, see Policy ยง5.6.13.)

--
Jakub Wilk
diff --git a/debian/control b/debian/control
--- a/debian/control
+++ b/debian/control
@@ -30,13 +30,13 @@
  Template Haskell.
  functionExtractor extracts all functions after a regexp-pattern.
  .
- > foo = "test"
- > boo = "testing"
- > bar = $(functionExtractor "oo$")
+  > foo = "test"
+  > boo = "testing"
+  > bar = $(functionExtractor "oo$")
  .
  will automagically extract the functions ending with "oo" such as
  .
- > bar = [("foo",foo), ("boo",boo)]
+  > bar = [("foo",foo), ("boo",boo)]
  .
  This can be useful if you wish to extract all functions beginning with test
  (for a test-framework) or all functions beginning with wc (for a web service).
@@ -60,13 +60,13 @@
  Template Haskell.
  functionExtractor extracts all functions after a regexp-pattern.
  .
- > foo = "test"
- > boo = "testing"
- > bar = $(functionExtractor "oo$")
+  > foo = "test"
+  > boo = "testing"
+  > bar = $(functionExtractor "oo$")
  .
  will automagically extract the functions ending with "oo" such as
  .
- > bar = [("foo",foo), ("boo",boo)]
+  > bar = [("foo",foo), ("boo",boo)]
  .
  This can be useful if you wish to extract all functions beginning with test
  (for a test-framework) or all functions beginning with wc (for a web service).
@@ -90,13 +90,13 @@
  Template Haskell.
  functionExtractor extracts all functions after a regexp-pattern.
  .
- > foo = "test"
- > boo = "testing"
- > bar = $(functionExtractor "oo$")
+  > foo = "test"
+  > boo = "testing"
+  > bar = $(functionExtractor "oo$")
  .
  will automagically extract the functions ending with "oo" such as
  .
- > bar = [("foo",foo), ("boo",boo)]
+  > bar = [("foo",foo), ("boo",boo)]
  .
  This can be useful if you wish to extract all functions beginning with test
  (for a test-framework) or all functions beginning with wc (for a web service).

Reply via email to