From 881c1ab387f925a2e4805a046379d88aadace783 Mon Sep 17 00:00:00 2001 From: Jack Leow Date: Sat, 8 Jul 2023 13:22:18 -0700 Subject: [PATCH] Updated Strongly Typed base talk Elm verbiage. --- docs/strongly-typed.html | 2 +- strongly-typed/src/Deck/Slide/32TypeSafety.elm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/strongly-typed.html b/docs/strongly-typed.html index 3facf85..15c7611 100644 --- a/docs/strongly-typed.html +++ b/docs/strongly-typed.html @@ -38290,7 +38290,7 @@ {ctor: '[]'}, { ctor: '::', - _0: _rtfeldman$elm_css$Html_Styled$text('Function parameters and return values have known types, and must be called using inputs of the correct types:'), + _0: _rtfeldman$elm_css$Html_Styled$text('Function parameters and return values have known types at compile-time, and must be called using inputs of the correct types:'), _1: {ctor: '[]'} }), _1: { diff --git a/strongly-typed/src/Deck/Slide/32TypeSafety.elm b/strongly-typed/src/Deck/Slide/32TypeSafety.elm index 37fde14..418fea4 100644 --- a/strongly-typed/src/Deck/Slide/32TypeSafety.elm +++ b/strongly-typed/src/Deck/Slide/32TypeSafety.elm @@ -1119,7 +1119,7 @@ product = multiply 42 2.718 standardSlideView page heading subheadingElm ( div [] [ p [] - [ text "Function parameters and return values have known types, and must be called using inputs of the correct types:" ] + [ text "Function parameters and return values have known types at compile-time, and must be called using inputs of the correct types:" ] , div [] [ codeBlock ] ] )