Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): minor docs fixes #1923

Merged
merged 2 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/userguides/contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/userguides/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ from ape.cli import ConnectedProviderCommand

@click.command(cls=ConnectedProviderCommand)
def cli(ecosystem, network):
click(f"You selected a provider on ecosystem '{ecosystem.name}' and {network.name}.")
click.echo(f"You selected a provider on ecosystem '{ecosystem.name}' and {network.name}.")

@click.command(cls=ConnectedProviderCommand)
def cli(network, provider):
Expand Down
Loading