feat: cucks finally finished

This commit is contained in:
Nick 2024-11-14 19:36:47 -06:00
parent 7b8a5dbca5
commit aa81fa7ad3
60 changed files with 290 additions and 201 deletions

View file

@ -63,24 +63,24 @@ makeDodge dodgeEntry index =
, column [ width <| px 350, alignLeft ]
[ case dodgeEntry.dodgeNicksDoxasticState of
Nothing ->
paragraph [ F.regular ] [ text "Nick doesn't form a doxastic state." ]
paragraph [ F.regular ] [ text "I don't form a doxastic state." ]
Just Belief ->
paragraph [ F.regular ]
[ text "Nick leans more toward "
[ text "I lean more toward "
, el [ F.bold ] (text "TRUE")
, text " than false."
]
Just Disbelief ->
paragraph [ F.regular ]
[ text "Nick leans more toward "
[ text "I lean more toward "
, text "FALSE" |> el [ F.bold ]
, text " than true."
]
Just Agnostic ->
el [ F.regular ] (text "Nick doesn't form beliefs about this proposition.")
el [ F.regular ] (text "I don't form beliefs about this proposition.")
]
]
, row (paragraphBoldFormat ++ [ width fill ])
@ -92,12 +92,12 @@ makeDodge dodgeEntry index =
[ text <|
case dodgeEntry.dodgeNicksDoxasticReason of
NoProp ->
"there is no proposition to evaluate."
"There is no proposition to evaluate."
Vague ->
"the proposition is too vague to evaluate."
VagueProp ->
"The proposition is too vague to evaluate."
Specific str ->
SpecificProp str ->
str
]
]