docs: fix typo in adr-012-state-accessors.md (#10374)

arugments -> arguments
This commit is contained in:
Ikko Ashimine 2021-10-16 16:48:41 +09:00 committed by GitHub
parent 94b62c2d67
commit fb083f9d34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: