@b9g/crank 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/crank.cjs CHANGED
@@ -862,8 +862,8 @@ const _ContextImpl = Symbol.for("crank.ContextImpl");
862
862
  * element tree are connected via contexts. Components can use this tree to
863
863
  * communicate data upwards via events and downwards via provisions.
864
864
  *
865
- * @template [TProps=*] - The expected shape of the props passed to the
866
- * component. Used to strongly type the Context iterator methods.
865
+ * @template [T=*] - The expected shape of the props passed to the component,
866
+ * or a component function. Used to strongly type the Context iterator methods.
867
867
  * @template [TResult=*] - The readable element value type. It is used in
868
868
  * places such as the return value of refresh and the argument passed to
869
869
  * schedule and cleanup callbacks.