Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Nov 29, 2024
1 parent acac0d8 commit 7315a63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/Cookbook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
"source": [
"### Changing the default hrp\n",
"\n",
"We have a configuration class, called `LibraryConfig`, that only stores the **default hrp** of the addresses. The default value is `erd`. The hrp can be changed when instantiating an address, or it can be changed in the `LibraryConfig` class, and all the addresses created will have the newly set hrp. "
"We have a configuration class, called `LibraryConfig`, that only stores (for the moment) the **default hrp** of the addresses. The default value is `erd`. The hrp can be changed when instantiating an address, or it can be changed in the `LibraryConfig` class, and all the addresses created will have the newly set hrp. "
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions multiversx_sdk/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ class LibraryConfig:
"""
Global configuration of the library.
Generally speaking, this configuration should only be altered on exotic use cases
it can be seen as a collection of constants (or , to be more precise, rarely changed variables) that are used throughout the library.
Generally speaking, this configuration should only be altered in exotic use cases.
It can be seen as a collection of constants or, more precisely, variables that are rarely changed and used throughout the library.
Never alter the configuration within a library!
Only alter the configuration(if needed) within an(end) application that uses this library.
Only alter the configuration, if needed, within a final application that uses this library.
"""

# The human-readable part of the bech32 addresses
Expand Down

0 comments on commit 7315a63

Please sign in to comment.