From c3cca5f8e261cc3c14c283529d27a3836ca0594b Mon Sep 17 00:00:00 2001 From: Isiah Meadows Date: Tue, 16 Jul 2019 07:49:22 -0400 Subject: [PATCH] Remove an outdated bit in the docs [skip ci] --- docs/vnodes.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/vnodes.md b/docs/vnodes.md index 8674f029..be1aae01 100644 --- a/docs/vnodes.md +++ b/docs/vnodes.md @@ -76,7 +76,6 @@ Property | Type | Description `state` | `Object?` | An object that is persisted between redraws. It is provided by the core engine when needed. In POJO component vnodes, the `state` inherits prototypically from the component object/class. In class component vnodes it is an instance of the class. In closure components it is the object returned by the closure. `events` | `Object?` | An object that is persisted between redraws and that stores event handlers so that they can be removed using the DOM API. The `events` property is `undefined` if there are no event handlers defined. This property is only used internally by Mithril, do not use or modify it. `instance` | `Object?` | For components, a storage location for the value returned by the `view`. This property is only used internally by Mithril, do not use or modify it. -`skip` | `Boolean` | This property is only used internally by Mithril when diffing keyed lists, do not use or modify it. ---