From f4181de990bcd810422bf98a9860cf885b40daff Mon Sep 17 00:00:00 2001 From: Kunj Dhola Date: Sun, 21 May 2023 02:45:44 +0100 Subject: [PATCH] Update relayer.md fixed a typo --- src/technical/evm/relayer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/technical/evm/relayer.md b/src/technical/evm/relayer.md index b74624d..8106bdf 100644 --- a/src/technical/evm/relayer.md +++ b/src/technical/evm/relayer.md @@ -52,7 +52,7 @@ The WormholeRelayer contract does not directly send messages. Rather, the Wormho This allows you to easily combine basic messaging along with other modules of the Wormhole ecosystem, such as the Token Bridge or NFT modules. It even allows for other Wormhole integrators to easily compose with your application! (See [best practices](./bestPractices.md) for more info.) -We'll discuss more complex useage later. For now let's just cover how to send a "Hello World" message. The basic mechanism to request delivery of your VAAs is to call the `send` function on the IWormholeRelayer interface. Here's its basic usage: +We'll discuss more complex usage later. For now let's just cover how to send a "Hello World" message. The basic mechanism to request delivery of your VAAs is to call the `send` function on the IWormholeRelayer interface. Here's its basic usage: ```solidity function sendHelloWorldMessage() public payable {