Skip to content

Commit fc648e0

Browse files
authored
CIP-0085 | Fix a typo, caseJust -> case_Just (#853)
1 parent 61a7d7b commit fc648e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CIP-0085/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ It's clear what to do for a Haskell value of one of the Plutus Core builtin type
4040

4141
For example:
4242
- `1` lifts to `(con integer 1)` (easy enough)
43-
- `Just 1` lifts to `(delay (lam case_Nothing (lam case_Just [caseJust (con integer 1)])))` (much more complicated)
43+
- `Just 1` lifts to `(delay (lam case_Nothing (lam case_Just [case_Just (con integer 1)])))` (much more complicated)
4444

4545
This means that it's difficult to specify how to do lifting for structured data.
4646
For example, if we want users (or the ledger!) to create Plutus Core terms representing structured data, it will be difficult to explain how to do it.

0 commit comments

Comments
 (0)