Merge pull request #1436 from alexander-travov/rewrite

Fix broken link in migration docs
This commit is contained in:
Leo Horie 2016-11-29 09:42:12 -05:00 committed by GitHub
commit 50426a4d20

View file

@ -499,7 +499,7 @@ m("svg",
## Nested arrays in views
Arrays now represent [fragments](fragments.md), which are structurally significant in v1.x virtual DOM. Whereas nested arrays in v0.2.x would be flattened into one continuous list of virtual nodes for the purposes of diffing, v1.x preserves the array structure - the children of any given array are not considered siblings of those of adjacent arrays.
Arrays now represent [fragments](fragment.md), which are structurally significant in v1.x virtual DOM. Whereas nested arrays in v0.2.x would be flattened into one continuous list of virtual nodes for the purposes of diffing, v1.x preserves the array structure - the children of any given array are not considered siblings of those of adjacent arrays.
***