Skip to content

Commit 82de97d

Browse files
authored
chore: fix some comments to improve readability (#2254)
Signed-off-by: solunolab <solunolab@outlook.com>
1 parent fdeb627 commit 82de97d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

brownie/network/transaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949

5050
def trace_property(fn: Callable[["TransactionReceipt"], _T]) -> "property[_T]":
51-
# attributes that are only available after querying the tranasaction trace
51+
# attributes that are only available after querying the transaction trace
5252

5353
@property
5454
def wrapper(self: "TransactionReceipt") -> _T:

brownie/project/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def items(
151151
self,
152152
path: str | None = None,
153153
) -> list[tuple[ContractName, BuildJson]]:
154-
"""Provides an list of tuples as (key,value), similar to calling dict.items.
154+
"""Provides a list of tuples as (key, value), similar to calling dict.items.
155155
If a path is given, only contracts derived from that source file are returned."""
156156
items = [*self._contracts.items(), *self._interfaces.items()]
157157
if path is None:

0 commit comments

Comments
 (0)