diff --git a/docs/tutorials/hello-world.md b/docs/tutorials/hello-world.md index f8642d4..637e22d 100644 --- a/docs/tutorials/hello-world.md +++ b/docs/tutorials/hello-world.md @@ -36,7 +36,7 @@ var ractive = Ractive({ data: { greeting: 'Hello', name: 'world' } }); ``` -Execute the code (with the ▶ button). It should look exactly as it did before. +Execute the code (with the ◊ button). It should look exactly as it did before. ## Step 3
@@ -64,8 +64,8 @@ Ooh la la! Even better, we could set both properties in one go. Let's do it in M
```js ractive.set({ - greeting: '你好', - name: '世界' + greeting: 'Привет', + name: 'Твоё дело' }); ```