diff --git a/src/lang/hash.js b/src/lang/hash.js index 342c9b9..753f882 100644 --- a/src/lang/hash.js +++ b/src/lang/hash.js @@ -1,11 +1,9 @@ /** section: Language, related to: Hash * $H([object]) -> Hash * - * Creates a `Hash`. - * - * `$H` is a convenience wrapper around the Hash constructor, with a safeguard - * that lets you pass an existing Hash object and get it back untouched - * (instead of uselessly cloning it). + * Creates a `Hash`. This is purely a convenience wrapper around the Hash + * constructor, it does not do anything other than pass any argument it's + * given into the Hash constructor and return the result. **/ function $H(object) { return new Hash(object); @@ -26,11 +24,10 @@ function $H(object) { * *