From cb253abc23b3169cb2df5ce4bd96b8eab9213195 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Fri, 23 Mar 2018 09:07:18 +0100 Subject: [PATCH] Update readme.md fixed String interpolation in mobx example --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 83255e5..187aead 100644 --- a/readme.md +++ b/readme.md @@ -40,7 +40,7 @@ class Store { @observable lastName = 'Bar'; @computed get fullName() { - return `${this.firstName} ${this.lastName} + return `${this.firstName} ${this.lastName}` } }