diff --git a/spec.emu b/spec.emu index 62f6885..a37da9a 100644 --- a/spec.emu +++ b/spec.emu @@ -13,7 +13,7 @@ contributors: Jonas Haukenes, Daniel Minor
Given a `key` and a value, the `getOrInsert` method will return the existing value if it exists, or otherwise insert the provided default value and return that value.
-Similarly, given a `key` and a callback function, the `getOrInsert` method will return the existing value if it +
Similarly, given a `key` and a callback function, the `getOrInsertComputed` method will return the existing value if it exists, or otherwise insert the returned value of the callback function, and return that value.