Skip to content

Commit

Permalink
EEP 63: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kikofernandez committed Dec 20, 2023
1 parent ef71005 commit 0d0a7e9
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions eeps/eep-0063.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,14 @@ UTF-8 encoded binary strings is more cumbersome: `<<"This is my string"/utf8>>`.

Here, we propose a lightweight, alternative syntax for UTF-8 binary string literals:

```
Str = b"This is my string".
```
Str = b"This is my string".

and patterns:

```
case Str of
b"This is my string" -> ok;
_ -> error
end.
```
case Str of
b"This is my string" -> ok;
_ -> error
end.

Implementation outline
==============
Expand Down Expand Up @@ -59,4 +55,3 @@ Copyright

This document is placed in the public domain or under the CC0-1.0-Universal
license, whichever is more permissive.

0 comments on commit 0d0a7e9

Please sign in to comment.