jj 3.0.0-rc.8 → 3.0.0-rc.9

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/lib/bundle.cjs CHANGED
@@ -268,9 +268,9 @@ var _JJET = class _JJET {
268
268
  * @example
269
269
  * ```ts
270
270
  * node
271
- * .run(function (context) {
271
+ * .run(function (jjContext) {
272
272
  * console.log(this.ref)
273
- * console.log(context.ref)
273
+ * console.log(jjContext.ref)
274
274
  * })
275
275
  * .trigger(new Event('ready'))
276
276
  * ```