Skip to content

Commit

Permalink
Merge pull request #6550 from jschear/js/fix_parser_package_tutorial_…
Browse files Browse the repository at this point in the history
…link

Fix link to parser in tutorial
  • Loading branch information
lukewilliamboswell authored Mar 4, 2024
2 parents 26e21ad + 60edfab commit 8421dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/content/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ You can find documentation for the `Stdout.line` function in the [Stdout](https:

Package modules enable Roc code to be easily re-used and shared. This is achieved by organizing code into different Interface modules and then including these in the `exposes` field of the package file structure, `package "name" exposes [ MyInterface ] packages {}`. The modules that are listed in the `exposes` field are then available for use in applications, platforms, or other packages. Internal modules that are not listed will be unavailable for use outside of the package.

See [Parser Package](https://github.com/roc-lang/roc/tree/main/examples/parser/package) for an example.
See [Parser Package](https://github.com/lukewilliamboswell/roc-parser/tree/main/package) for an example.

Package documentation can be generated using the Roc cli with `roc docs /package/*.roc`.

Expand Down

0 comments on commit 8421dcb

Please sign in to comment.