Skip to content

Commit

Permalink
fix mismatched version number in example
Browse files Browse the repository at this point in the history
  • Loading branch information
iznaut committed Aug 8, 2024
1 parent 0be0bc5 commit d5e286a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/learn/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## Reference a module

Alongside your `project.luxe` file, there is a file called `luxe.project/modules.lx`. Dependencies on modules can be added to this file, or added via the [launcher](../../tutorial/using-modules/). For example, if you were using a module called `arcade` at version `0.0.18` it would look like this:
Alongside your `project.luxe` file, there is a file called `luxe.project/modules.lx`. Dependencies on modules can be added to this file, or added via the [launcher](../../tutorial/using-modules/). For example, if you were using a module called `arcade` at version `0.0.23` it would look like this:

```js
modules = {
luxe = "2024.2.1"
arcade = "0.0.21"
luxe = "2024.8.3"
arcade = "0.0.23"
} //modules
```

0 comments on commit d5e286a

Please sign in to comment.