From 6a7a9f8addb14854f5073fdcf7a7f462b04ef20e Mon Sep 17 00:00:00 2001 From: Mike Shultz Date: Fri, 9 Feb 2024 00:44:56 -0700 Subject: [PATCH] fix(docs): null ref --- docs/userguides/contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userguides/contracts.md b/docs/userguides/contracts.md index 95b8fa3297..f6f5876f01 100644 --- a/docs/userguides/contracts.md +++ b/docs/userguides/contracts.md @@ -59,7 +59,7 @@ To avoid naming collisions with other properties on the `project` object, you ca ```python from ape import project -contract = property.get_contract("MyContract") # Same as `project.MyContract`. +contract = project.get_contract("MyContract") # Same as `project.MyContract`. ``` Notice when deploying, we have to specify the `sender=` kwarg because `deploy` operations are transactions.