From 09b4472df9adbd5446641f3416e388b990de1850 Mon Sep 17 00:00:00 2001 From: Pavel Murygin Date: Tue, 20 Jul 2021 15:49:56 +0300 Subject: [PATCH] fix word casing in aqua --- intro/3-hello-world-web3/aqua/getting-started.aqua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/intro/3-hello-world-web3/aqua/getting-started.aqua b/intro/3-hello-world-web3/aqua/getting-started.aqua index 351d7c6..781c860 100644 --- a/intro/3-hello-world-web3/aqua/getting-started.aqua +++ b/intro/3-hello-world-web3/aqua/getting-started.aqua @@ -7,16 +7,16 @@ data HelloComputation: msg: string reply: string -service Hello_world_compute: +service HelloWorldCompute: hello_world(from: string) -> HelloComputation service HelloWorld("HelloWorld"): - recieveHello(from: PeerId) -> string + recieveHello(message: string) -> string func sayHello(peerId: PeerId, relayPeerId: PeerId) -> string: on helloServiceNode: - Hello_world_compute helloServiceId - comp <- Hello_world_compute.hello_world(%init_peer_id%) + HelloWorldCompute helloServiceId + comp <- HelloWorldCompute.hello_world(%init_peer_id%) co on peerId via relayPeerId: HelloWorld.recieveHello(comp.msg)