Skip to content

Commit

Permalink
Merge pull request #2586 from Dimitrolito/fix/spelling
Browse files Browse the repository at this point in the history
Fix spelling errors
  • Loading branch information
thewhaleking authored Jan 22, 2025
2 parents 8db8d5a + 48047c1 commit 94749d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bittensor/core/extrinsics/commit_reveal.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def commit_reveal_v3_extrinsic(

if success is True:
logging.success(
f"[green]Finalized![/green] Weights commited with reveal round [blue]{reveal_round}[/blue]."
f"[green]Finalized![/green] Weights committed with reveal round [blue]{reveal_round}[/blue]."
)
return True, f"reveal_round:{reveal_round}"
else:
Expand Down
4 changes: 2 additions & 2 deletions bittensor/utils/networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def int_to_ip(int_val: int) -> str:
def ip_to_int(str_val: str) -> int:
"""Maps an ip-string to a unique integer.
arg:
str_val (:tyep:`str`, `required):
str_val (:type:`str`, `required):
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
Returns:
Expand All @@ -51,7 +51,7 @@ def ip_to_int(str_val: str) -> int:
def ip_version(str_val: str) -> int:
"""Returns the ip version (IPV4 or IPV6).
arg:
str_val (:tyep:`str`, `required):
str_val (:type:`str`, `required):
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
Returns:
Expand Down

0 comments on commit 94749d2

Please sign in to comment.