From c645b1737a5610a93c029b30b20eee09238c34e5 Mon Sep 17 00:00:00 2001 From: Slava Kim Date: Tue, 12 May 2015 00:57:52 -0700 Subject: [PATCH] Make a _uid example to look more like a valid JS object literal --- source/guide/list.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/guide/list.md b/source/guide/list.md index aab495a3e8..b93f66c7b3 100644 --- a/source/guide/list.md +++ b/source/guide/list.md @@ -177,8 +177,8 @@ For example, if your data looks like this: ``` js { items: [ - { _uid: 88f869d, ... }, - { _uid: 7496c10, ... } + { _uid: '88f869d', ... }, + { _uid: '7496c10', ... } ] } ```