From 611286db3199fa6bf18c483f4e35507287dc54f3 Mon Sep 17 00:00:00 2001 From: Dan Connolly Date: Thu, 4 Jan 2024 16:33:49 -0600 Subject: [PATCH] docs(zoe): editorial Co-authored-by: Chris Hibbert --- main/guides/zoe/contract-basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/guides/zoe/contract-basics.md b/main/guides/zoe/contract-basics.md index ac6e69882e..3743031155 100644 --- a/main/guides/zoe/contract-basics.md +++ b/main/guides/zoe/contract-basics.md @@ -18,7 +18,7 @@ a method of the contract's `publicFacet`: <<< @/snippets/zoe/src/01-hello.js#publicFacet -We mark it `Far(...)` to allow callers from outside the contract +We mark it `Far(...)` to allow callers to use it from outside the contract and give it a suggestive interface name for debugging. _We'll discuss [Far in more detail](../js-programming/far.md) later._