From 34330323d3a374796f708f7503dfa976d88146fb Mon Sep 17 00:00:00 2001 From: gerceg <208278270+godotrennk@users.noreply.github.com> Date: Wed, 30 Apr 2025 07:04:24 +0300 Subject: [PATCH] Update hello-world.md --- docs/tutorials/hello-world.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: 'Твоё дело' }); ```