Skip to content

Commit dd32df4

Browse files
committed
Fix typo in docs of gen_ci.hs
1 parent 8d026ba commit dd32df4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/generate-ci/gen_ci.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ runner AArch64 Windows = error "aarch64 windows not supported"
189189
-------------------------------------------------------------------------------
190190
-- Action generatation
191191
-------------------------------------------------------------------------------
192-
-- Each x86-linux job has its own action, living in a seperate file
192+
-- Each x86-linux job has its own action, living in a separate file
193193
-- The contents of the file are derived from the 'Action' datatype
194194
--
195195
-- We do this so that we can run the build in the right kind of OS container,
@@ -199,8 +199,8 @@ runner AArch64 Windows = error "aarch64 windows not supported"
199199
-- github provided actions, see for instance https://github.com/actions/upload-artifact/issues/489
200200
-------------------------------------------------------------------------------
201201

202-
-- | Container actions for x86-linux runners
203-
-- Each of these corresponds to a seperate action file,
202+
-- | Container actions for x86-linux runners.
203+
-- Each of these corresponds to a separate action file,
204204
-- called 'actionName', located at 'actionPath'
205205
data Action
206206
= Action
@@ -357,7 +357,7 @@ releaseJob cs =
357357

358358

359359
buildJob :: Arch -> Opsys -> GHC -> Job
360-
buildJob arch os v =
360+
buildJob arch os v =
361361
K.fromString (buildJobName arch os v) .= object
362362
[ "runs-on" .= runner arch os
363363
, "name" .= str (buildJobName arch os v ++ " (Build binaries)")

0 commit comments

Comments
 (0)