From fc4d5f189226562f5bcf598c3c3e23165f980c0e Mon Sep 17 00:00:00 2001 From: spacejack Date: Sun, 12 Feb 2017 15:14:06 -0500 Subject: [PATCH] resolver.render return type description consistent with m.render --- docs/route.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/route.md b/docs/route.md index fea422be..1ecb8d62 100644 --- a/docs/route.md +++ b/docs/route.md @@ -143,7 +143,7 @@ Argument | Type | Description ------------------- | -------------------- | ----------- `vnode` | `Object` | A [vnode](vnodes.md) whose attributes object contains routing parameters. If onmatch does not return a component or a promise that resolves to a component, the vnode's `tag` field defaults to `"div"` `vnode.attrs` | `Object` | A map of URL parameter values -**returns** | `Vnode|Array` | Returns a vnode or array of vnodes +**returns** | `Array|Vnode` | The [vnodes](vnodes.md) to be rendered ---