diff --git a/README.md b/README.md index 9f736c84..5a607f05 100644 --- a/README.md +++ b/README.md @@ -21,5 +21,11 @@ A summary of Reflex functions is available in the [quick reference](Quickref.md) ### Hacking -Use the `./scripts/hack-on reflex` script in [Reflex Platform](https://github.com/reflex-frp/reflex-platform) to checkout the source code of `reflex` locally in `reflex-platform/reflex` directory. -Then do modifications to the source in place, and use the `./try-reflex` or `./scripts/work-on` scripts to create the shell to test your changes. +From the root of a [Reflex +Platform](https://github.com/reflex-frp/reflex-platform) checkout, run +`./scripts/hack-on haskell-overlays/reflex-packages/dep/reflex`. This +will check out the reflex source code into the +`haskell-overlays/reflex-packages/dep/reflex` directory. You can then +point that checkout at your fork, make changes, etc. Use the +`./try-reflex` or `./scripts/work-on` scripts to start a shell in +which you can test your changes. diff --git a/src/Reflex/Query/Class.hs b/src/Reflex/Query/Class.hs index 5197c2d8..61ec3537 100644 --- a/src/Reflex/Query/Class.hs +++ b/src/Reflex/Query/Class.hs @@ -125,7 +125,7 @@ instance Group SelectedCount where instance Additive SelectedCount --- | The Semigroup/Monoid/Group instances for a Query containing 'SelectedCount's should use +-- | The Semigroup\/Monoid\/Group instances for a Query containing 'SelectedCount's should use -- this function which returns Nothing if the result is 0. This allows the pruning of leaves -- of the 'Query' that are no longer wanted. combineSelectedCounts :: SelectedCount -> SelectedCount -> Maybe SelectedCount