From 817339cfef9d9b49c9a7cb24988cf1ee89e9fedd Mon Sep 17 00:00:00 2001 From: Mateo Roldos Date: Wed, 22 Jun 2022 20:44:28 -0300 Subject: [PATCH] DOC -- [fcl] fix transactions.mdx typo --- docs/reference/transactions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/transactions.mdx b/docs/reference/transactions.mdx index da32a35cc..ac4df79bf 100644 --- a/docs/reference/transactions.mdx +++ b/docs/reference/transactions.mdx @@ -48,7 +48,7 @@ Our Cadence code this time has a prepare statement, and we are using the `fcl.cu The `prepare` statement's arguments directly map to the order of the authorizations in the `authorizations` array. Four authorizations means four `AuthAccount`s as arguments passed to `prepare`. In this case though there is only one, and it is the `currentUser`. -These authorizations are important as you can only access/modify an accounts storage if you have the said ccounts authorization. +These authorizations are important as you can only access/modify an accounts storage if you have the said accounts authorization. ```javascript import * as fcl from "@onflow/fcl"