From e325751e7a2197341d44feab69e26cd8ae506fbe Mon Sep 17 00:00:00 2001 From: Endel Dreyer Date: Thu, 13 Jul 2017 10:37:10 +0200 Subject: [PATCH] update migrating page --- MIGRATING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIGRATING.md b/MIGRATING.md index b66fa01..944ed73 100644 --- a/MIGRATING.md +++ b/MIGRATING.md @@ -24,7 +24,7 @@ console.log( room.data.someDataFromServer ); OLD ```typescript -room.listen("entities/:id/:attribute", "replace", (id, attribute, value) => { +room.state.listen("entities/:id/:attribute", "replace", (id, attribute, value) => { console.log(id, attribute, value); }) ```