Skip to content

Commit 4ff15f7

Browse files
Fix trailing newline issues
1 parent 62d8ecf commit 4ff15f7

File tree

36 files changed

+37
-37
lines changed

36 files changed

+37
-37
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{-# OPTIONS_GHC -flate-specialise #-}
22

3-
module UnknownOptionsFlag where
3+
module UnknownOptionsFlag where
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{-# OPTIONS_GHC -flat-specialise #-}
22

3-
module UnknownOptionsFlag where
3+
module UnknownOptionsFlag where

message-index/messages/GHC-06446/example1/after/DoNotationInPattern.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ module DoNotationInPattern where
33
f :: Monad m => m Int -> m Bool
44
f m = do
55
v <- m
6-
return $ v == 2
6+
return $ v == 2

message-index/messages/GHC-09009/example1/after/IllegalRole.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
module IllegalRole where
44

55
type role A phantom
6-
data A a = A
6+
data A a = A

message-index/messages/GHC-09009/example1/before/IllegalRole.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
module IllegalRole where
44

55
type role A pantom
6-
data A a = A
6+
data A a = A
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module Example where
22

33
example = foo
4-
where foo = ' '
4+
where foo = ' '
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module Example where
22

33
example = foo
4-
where foo = ''
4+
where foo = ''

message-index/messages/GHC-20125/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ flag: -Wmissing-fields
77
---
88
When constructing a record using labeled fields, all fields which are not explicitly stated are implicitly initialized with a bottom term. This means that accessing the field results in a panic.
99

10-
If a *strict* field is missing, the error [GHC-95909](/messages/GHC-95909/index.html) is emitted instead.
10+
If a *strict* field is missing, the error [GHC-95909](/messages/GHC-95909/index.html) is emitted instead.

message-index/messages/GHC-45696/example1/after/IfThenElseInPattern.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ f a b = case (a, b) of
77
_ -> False
88

99
f' :: Bool -> String -> Bool
10-
f' a b = (a && b == "something") || (not a && b == "something else")
10+
f' a b = (a && b == "something") || (not a && b == "something else")

message-index/messages/GHC-45696/example1/before/IfThenElseInPattern.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ module IfThenElseInPattern where
33
f :: Bool -> String -> Bool
44
f a b = case a of
55
(if a then b == "something" else b == "something else") -> True
6-
_ -> False
6+
_ -> False

0 commit comments

Comments
 (0)