Skip to content

Commit e596a7a

Browse files
committed
minor
1 parent 3e3f4c0 commit e596a7a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ GEM
1313
eventmachine (1.2.7)
1414
ffi (1.17.2-arm64-darwin)
1515
ffi (1.17.2-x64-mingw-ucrt)
16-
ffi (1.17.2-x86_64-linux-gnu)
16+
ffi (1.17.2-x86_64-linux)
1717
forwardable-extended (2.6.0)
1818
http_parser.rb (0.8.0)
1919
i18n (1.14.7)
@@ -70,7 +70,7 @@ GEM
7070
racc (~> 1.4)
7171
nokogiri (1.18.9-x64-mingw-ucrt)
7272
racc (~> 1.4)
73-
nokogiri (1.18.9-x86_64-linux-gnu)
73+
nokogiri (1.18.9-x86_64-linux)
7474
racc (~> 1.4)
7575
pathutil (0.16.2)
7676
forwardable-extended (~> 2.6)

_chapters/haskell3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ Therefore, after applying this parser, it will result in: `Just ("", (\a b -> a)
13241324

13251325
*Point-Free Code*: A style of defining functions without mentioning their arguments explicitly. This often involves the use of function composition and other combinators.
13261326

1327-
*Functor*: A type class in Haskell that represents types that can be mapped over. Instances of [Functor](/assets/WhatTheFunctor.mp3) must define the fmap function, which applies a function to every element in a structure.
1327+
*Functor*: A type class in Haskell that represents types that can be mapped over. Instances of Functor must define the fmap function, which applies a function to every element in a structure.
13281328

13291329
*Applicative*: A type class in Haskell that extends Functor, allowing functions that are within a context to be applied to values that are also within a context. Applicative defines the functions pure and (<*>).
13301330

0 commit comments

Comments
 (0)