Skip to content

Commit

Permalink
docs: update RecordSelect syntax to # (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaschdoc authored Jun 24, 2024
1 parent 78aeb63 commit 142cf98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
By adding your name to this document, you agree to release all your contributions to Flix under the [Apache 2.0 License](LICENSE.md).

- [Magnus Madsen](https://github.com/magnus-madsen)
- [Jakob Schneider Villumsen](https://github.com/jaschdoc)
2 changes: 1 addition & 1 deletion src/page/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def oneByOne(): {w = Int32, h = Int32} = {w = 1, h = 1}
def twoByFour(): {w = Int32, h = Int32} = {w = 2, h = 4}
def area(rect: {w = Int32, h = Int32 | r}): Int32 =
rect.w * rect.h
rect#w * rect#h
def f(): Int32 = area({h = 1, color = "Blue", w = 2})`}
</InlineEditor>
Expand Down

0 comments on commit 142cf98

Please sign in to comment.