From fb083f9d34baa47eaf4d5d5005943e091327997a Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 16 Oct 2021 16:48:41 +0900 Subject: [PATCH] docs: fix typo in adr-012-state-accessors.md (#10374) arugments -> arguments --- docs/architecture/adr-012-state-accessors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/adr-012-state-accessors.md b/docs/architecture/adr-012-state-accessors.md index 79deb6a9df..8b2a9b3f43 100644 --- a/docs/architecture/adr-012-state-accessors.md +++ b/docs/architecture/adr-012-state-accessors.md @@ -96,7 +96,7 @@ func (Mapping) Has(ctx Context, key []byte) bool {} func (Mapping) Delete(ctx Context, key []byte) {} ``` -Each method of the `Mapping` type that is passed the arugments `ctx`, `key`, and `args...` will proxy +Each method of the `Mapping` type that is passed the arguments `ctx`, `key`, and `args...` will proxy the call to `Mapping.Value(key)` with arguments `ctx` and `args...`. In addition, we will define and provide a common set of types derived from the `Value` type: