From c7852fdd7620e3741caea55ad28985d790715cc4 Mon Sep 17 00:00:00 2001 From: Ivan Perez Date: Sat, 14 May 2022 19:56:57 -0400 Subject: [PATCH] yampa-test: Adjust format of export lists (KSG Haskell 1.3.0 - 4.2). Refs #212. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For lists or tuple elements separated by commas in which each value is listed in a separate line, and when the Haskell syntax allows it, the comma must be the first character of every line but the first. This commit adjust commas and indentation of export lists. --- yampa-test/tests/TestsFirstSecond.hs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/yampa-test/tests/TestsFirstSecond.hs b/yampa-test/tests/TestsFirstSecond.hs index 880f1315..bca6823a 100644 --- a/yampa-test/tests/TestsFirstSecond.hs +++ b/yampa-test/tests/TestsFirstSecond.hs @@ -3,7 +3,13 @@ -- Description : Test cases for first and second -- Copyright : Yale University, 2003 -- Authors : Antony Courtney and Henrik Nilsson -module TestsFirstSecond (first_trs, first_tr, second_trs, second_tr) where +module TestsFirstSecond + ( first_trs + , first_tr + , second_trs + , second_tr + ) + where import Data.Tuple (swap)