From 1be289188cef093520098e318ec910cf3ea5b40d Mon Sep 17 00:00:00 2001 From: Stefan Fehrenbach Date: Fri, 27 Aug 2021 09:03:09 +0200 Subject: [PATCH] Minor doc change --- src/Data/HashMap.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Data/HashMap.purs b/src/Data/HashMap.purs index bb54aec..53eb615 100644 --- a/src/Data/HashMap.purs +++ b/src/Data/HashMap.purs @@ -129,7 +129,7 @@ foreign import traverseWithIndexPurs :: forall k v w m. (forall a. a -> m a) -> -- | This newtype provides a `Semigroup` instance for `HashMap k v` -- | which delegates to the `Semigroup v` instance of elements. -- | --- | This is part of the following migration process: +-- | We are currently in step 1 of the following migration process: -- | 1. Add `SemigroupHashMap` with the new `Semigroup` instance and remove old instance from `HashMap`. -- | -- | The new instance uses `unionWith append` instead of `union`.