diff --git a/book/interop/flags.md b/book/interop/flags.md index c4a3820c..13b8e607 100644 --- a/book/interop/flags.md +++ b/book/interop/flags.md @@ -91,7 +91,7 @@ subscriptions _ = Sub.none ``` -The only important here is the `init` function says it takes an `Int` argument. This is how Elm code gets immediate access to the flags you pass in from JavaScript. From there, you can put things in your model or run some commands. Whatever you need to do. +The only important difference here is the `init` function says it takes an `Int` argument. This is how Elm code gets immediate access to the flags you pass in from JavaScript. From there, you can put things in your model or run some commands. Whatever you need to do. I recommend checking out [this `localStorage` example](https://github.com/elm-community/js-integration-examples/tree/master/localStorage) for a more interesting use of flags!