Skip to content

Commit

Permalink
doc: fix typos (#7904)
Browse files Browse the repository at this point in the history
* doc: fix typo Acton -> Action

* doc: fix typo falied -> failed

* doc: fix typo recieve -> receive

* doc: fix typo infomation -> information

* Update tools/delay-detector/README.md

Co-authored-by: Michal Nazarewicz <mina86@mina86.com>
  • Loading branch information
2 people authored and nikurt committed Nov 9, 2022
1 parent a8b59d6 commit d74d1de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/primitives/src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ impl Display for ActionsValidationError {

impl std::error::Error for ActionsValidationError {}

/// An error happened during Acton execution
/// An error happened during Action execution
#[derive(
BorshSerialize, BorshDeserialize, Debug, Clone, PartialEq, Eq, Deserialize, Serialize, RpcError,
)]
Expand Down
2 changes: 1 addition & 1 deletion pytest/lib/mocknet.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def send_transaction(node, tx, tx_hash, account_id, timeout=120):
elif 'does not exist' in error_data:
missing_count += 1
logger.warning(
f'transaction {tx_hash} falied to be recieved by the node, checking again.'
f'transaction {tx_hash} failed to be received by the node, checking again.'
)
if missing_count < 20:
time.sleep(5)
Expand Down
2 changes: 1 addition & 1 deletion tools/delay-detector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ More advanced example:
d.snapshot("part2")
part3();
d.shapshot("part3")
// d_ goes out of scope and prints the total time infomation and time between each 'snapshot' call.
// d goes out of scope and prints the total time information and time between each 'snapshot' call.
}
```

0 comments on commit d74d1de

Please sign in to comment.