From ef6123f2150e61b71dfb5679bcb3e394ece11eab Mon Sep 17 00:00:00 2001 From: armaniferrante Date: Wed, 7 Apr 2021 09:46:18 -0700 Subject: [PATCH] docs: Fix broken link --- docs/src/tutorials/tutorial-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/tutorial-2.md b/docs/src/tutorials/tutorial-2.md index 6de8bd7be..2b33cdd50 100644 --- a/docs/src/tutorials/tutorial-2.md +++ b/docs/src/tutorials/tutorial-2.md @@ -61,7 +61,7 @@ Here, several `#[account(..)]` attributes are used. If any of these constraints do not hold, then the `increment` instruction will never be executed. This allows us to completely separate account validation from our program's business logic, allowing us -to reason about each concern more easily. For more, see the full [list](https://github.com/project-serum/anchor#accounts-attribute-syntax) of account constraints. +to reason about each concern more easily. For more, see the full [list](https://docs.rs/anchor-lang/latest/anchor_lang/derive.Accounts.html) of account constraints. ## Next Steps