@@ -103,7 +103,7 @@ export interface VNode {
103103export interface VNodeProperties {
104104 /**
105105 * The animation to perform when this node is added to an already existing parent.
106- * {@link http ://maquettejs .org/docs/animations.html More about animations}.
106+ * {@link https ://maquette.js .org/docs/animations.html More about animations}.
107107 * @param element - Element that was just added to the DOM.
108108 * @param properties - The properties object that was supplied to the {@link h} method
109109 */
@@ -120,7 +120,7 @@ export interface VNodeProperties {
120120 /**
121121 * The animation to perform when the properties of this node change.
122122 * This also includes attributes, styles, css classes. This callback is also invoked when node contains only text and that text changes.
123- * {@link http ://maquettejs .org/docs/animations.html More about animations}.
123+ * {@link https ://maquette.js .org/docs/animations.html More about animations}.
124124 * @param element - Element that was modified in the DOM.
125125 * @param properties - The last properties object that was supplied to the {@link h} method
126126 * @param previousProperties - The previous properties object that was supplied to the {@link h} method
@@ -166,7 +166,7 @@ export interface VNodeProperties {
166166 /**
167167 * Callback that is called when a node has been removed from the tree.
168168 * The callback is called during idle state or after a timeout (fallback).
169- * {@link https://maquettejs .org/docs/dom-node-removal.html More info}
169+ * {@link https://maquette.js .org/docs/dom-node-removal.html More info}
170170 * @param element - The element that has been removed from the DOM.
171171 */
172172 afterRemoved ?( element : Element ) : void ;
@@ -402,7 +402,7 @@ export interface ProjectionOptions extends ProjectorOptions {
402402
403403/**
404404 * Keeps an array of result objects synchronized with an array of source objects.
405- * See {@link http ://maquettejs .org/docs/arrays.html Working with arrays}.
405+ * See {@link https ://maquette.js .org/docs/arrays.html Working with arrays}.
406406 *
407407 * Mapping provides a {@link map} function that updates its {@link results}.
408408 * The {@link map} function can be called multiple times and the results will get created, removed and updated accordingly.
0 commit comments