Skip to content

Commit 1fc77aa

Browse files
bernhard-herzoghdgarrood
authored andcommitted
Revert "fixed wrong type signature (#245)" (#248)
* Revert "fixed wrong type signature (#245)" This reverts commit 13725a0. The type signature that was changed by #245 was actually correct before that PR, see #245 (comment) * Add myself to CONTRIBUTORS.md
1 parent 58523e6 commit 1fc77aa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ If you would prefer to use different terms, please use the section below instead
5353
| [@soupi](https://github.com/soupi) | Gil Mizrahi | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
5454
| [@FungusHumungus](https://github.com/FungusHumungus) | Stephen Wakely | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
5555
| [@Beyarz](https://github.com/Beyarz) | Beyar N | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
56+
| [@bernhard-herzog](https://github.com/bernhard-herzog) | Bernhard Herzog | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
5657

5758
### Contributors using Modified Terms
5859

language/Types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ combineBar f o = f o.foo o.bar
194194
type Baz = Number -> Number -> Bar Number
195195
196196
-- This function will take two arguments and return a record with double the value
197-
mkDoubledFoo :: Number -> Number -> Baz
197+
mkDoubledFoo :: Baz
198198
mkDoubledFoo foo bar = { foo: 2.0*foo, bar: 2.0*bar }
199199
200200
-- Build on our previous functions to double the values inside any Foo

0 commit comments

Comments
 (0)