From 97e9e03fb041b8b888a9876a7c0676d9bb4736f3 Mon Sep 17 00:00:00 2001 From: Yang Li Date: Tue, 6 Jul 2021 12:13:32 +0800 Subject: [PATCH] Fix typo in tutorial-6 (#482) --- docs/src/tutorials/tutorial-6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/tutorial-6.md b/docs/src/tutorials/tutorial-6.md index 6620b290d..bab9d2fa9 100644 --- a/docs/src/tutorials/tutorial-6.md +++ b/docs/src/tutorials/tutorial-6.md @@ -30,7 +30,7 @@ if you only use associated token addresses. Unfortunately, the SPL token program doesn't do this, strictly. It was built *before* the existance of associated token accounts (associated token accounts were built as an add-on). So in reality, there are non associated token accounts floating around Solanaland. -However, for new programs, this isn't necessary, and it's recommend to only use associated +However, for new programs, this isn't necessary, and it's recommended to only use associated accounts when creating accounts on behalf of users, such as a token account. :::