From 6b9fbd42c90ea0e9bcbcd5675ca2ed6a9298ced6 Mon Sep 17 00:00:00 2001 From: leohhhn Date: Tue, 6 Feb 2024 18:15:24 +0100 Subject: [PATCH] fix banker typo --- docs/concepts/standard-library/banker.md | 2 +- docs/reference/standard-library/std/banker.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/standard-library/banker.md b/docs/concepts/standard-library/banker.md index 66aacb82c07..a4a1104859c 100644 --- a/docs/concepts/standard-library/banker.md +++ b/docs/concepts/standard-library/banker.md @@ -10,7 +10,7 @@ The Banker module can be cast into 4 subtypes of bankers that expose different f ### Banker Types -1. `BankerTypeReadOnly` - read-only access to coin balances +1. `BankerTypeReadonly` - read-only access to coin balances 2. `BankerTypeOrigSend` - full access to coins sent with the transaction that called the banker 3. `BankerTypeRealmSend` - full access to coins that the realm itself owns, including the ones sent with the transaction 4. `BankerTypeRealmIssue` - able to issue new coins diff --git a/docs/reference/standard-library/std/banker.md b/docs/reference/standard-library/std/banker.md index 761f3c7d253..621a447ab84 100644 --- a/docs/reference/standard-library/std/banker.md +++ b/docs/reference/standard-library/std/banker.md @@ -28,7 +28,7 @@ Returns `Banker` of the specified type. #### Parameters - `BankerType` - type of Banker to get: - - `BankerTypeReadOnly` - read-only access to coin balances + - `BankerTypeReadonly` - read-only access to coin balances - `BankerTypeOrigSend` - full access to coins sent with the transaction that calls the banker - `BankerTypeRealmSend` - full access to coins that the realm itself owns, including the ones sent with the transaction - `BankerTypeRealmIssue` - able to issue new coins