From 890e6b4b1de86eafd5e89bed89d83a133d64744e Mon Sep 17 00:00:00 2001 From: Rome Reginelli Date: Tue, 17 Oct 2023 13:53:53 -0700 Subject: [PATCH] Fix typo in payment types table It refers to the types of the transaction so it should be `Account` (the sender), not `Address` (not a real field). --- .../transactions/transaction-types/payment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/references/protocol-reference/transactions/transaction-types/payment.md b/content/references/protocol-reference/transactions/transaction-types/payment.md index 58d3e980a77..43e086c087e 100644 --- a/content/references/protocol-reference/transactions/transaction-types/payment.md +++ b/content/references/protocol-reference/transactions/transaction-types/payment.md @@ -53,7 +53,7 @@ Payments are also the only way to [create accounts](#creating-accounts). The `Payment` transaction type functions differently depending on how you fill in the `Payment` fields: -| Payment type | `Amount` | `SendMax` | `Paths` | `Address` = `Destination`? | Description | +| Payment type | `Amount` | `SendMax` | `Paths` | `Account` = `Destination`? | Description | |:-------------|:----------|:-----------|:----------|:---------------------------|:--| | [Direct XRP Payment][] | String (XRP) | Omitted | Omitted | No | Transfers XRP directly from one account to another, using one transaction. Always delivers the exact amount. No fee applies other than the basic [transaction cost](transaction-cost.html). | | [Creating or redeeming tokens][] | Object | Object (optional) | Optional | No | Increases or decreases the amount of a non-XRP currency or asset tracked in the XRP Ledger. [Transfer fees](transfer-fees.html) and [freezes](freezes.html) do not apply when sending and redeeming directly. |