From f35b241d01d08c5d08e73cb5e7473b304e4ce5b4 Mon Sep 17 00:00:00 2001 From: Jeremy Schlatter Date: Mon, 13 May 2019 15:59:20 -0700 Subject: [PATCH] accounts/abi: fix documentation --- accounts/abi/method.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accounts/abi/method.go b/accounts/abi/method.go index 2d8d3d6589..d3c02599f2 100644 --- a/accounts/abi/method.go +++ b/accounts/abi/method.go @@ -27,9 +27,9 @@ import ( // If the method is `Const` no transaction needs to be created for this // particular Method call. It can easily be simulated using a local VM. // For example a `Balance()` method only needs to retrieve something -// from the storage and therefor requires no Tx to be send to the +// from the storage and therefore requires no Tx to be send to the // network. A method such as `Transact` does require a Tx and thus will -// be flagged `true`. +// be flagged `false`. // Input specifies the required input parameters for this gives method. type Method struct { Name string