Skip to content

Commit

Permalink
chore: fix typo (#4151)
Browse files Browse the repository at this point in the history
# Fix Typo in `simapp.go`

## Description
This pull request fixes a typo in the `simapp.go` file. Specifically,
the word "addreses" was corrected to "addresses" in a comment.

### Changes Made
- Fixed a typo in the comment within the `ModuleAccountAddrs` method
documentation:
  - Changed:
    ```
// All the registered module account addreses.
    ```
    to:
    ```
// All the registered module account addresses.
    ```

## Rationale
Ensuring comments are clear and free from typographical errors enhances
the readability and professionalism of the codebase.

## Checklist
- [x] Followed the contributing guidelines.
- [x] Made only the necessary changes.
- [x] Comments remain clear and concise.

## Notes
Please let me know if any additional changes or improvements are
required.
  • Loading branch information
Hack666r authored Jan 2, 2025
1 parent d6733b8 commit 49d4671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/pfm/simapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ type App interface {
// Loads the app at a given height.
LoadHeight(height int64) error

// All the registered module account addreses.
// All the registered module account addresses.
ModuleAccountAddrs() map[string]bool

// Helper for the simulation framework.
Expand Down

0 comments on commit 49d4671

Please sign in to comment.