Skip to content

Commit 73d5cb6

Browse files
authored
fix: typo of abandoned (#2222)
**Description** Hi! I'm helping with this package in Debian. This fixes a typo. **Checklist** - [ ] Code compiles correctly and linting passes locally - [ ] For all _code_ changes, an entry added to the `CHANGELOG.md` file describing and linking to this PR - [ ] Tests added for new functionality, or regression tests for bug fixes added as applicable - [ ] For public APIs, new features, etc., PR on [docs repo](https://github.com/hypermodeinc/docs) staged and linked here **Instructions** - The PR title should follow the [Conventional Commits](https://www.conventionalcommits.org/) syntax, leading with `fix:`, `feat:`, `chore:`, `ci:`, etc. - The description should briefly explain what the PR is about. In the case of a bugfix, describe or link to the bug. - In the checklist section, check the boxes in that are applicable, using `[x]` syntax. - If not applicable, remove the entire line. Only leave the box unchecked if you intend to come back and check the box later. - Delete the `Instructions` line and everything below it, to indicate you have read and are following these instructions. 🙂 Thank you for your contribution to Badger!
1 parent 07a8095 commit 73d5cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

badger/cmd/bank.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ func min(a, b uint64) uint64 {
139139
return b
140140
}
141141

142-
var errAbandoned = stderrors.New("Transaction abandonded due to insufficient balance")
142+
var errAbandoned = stderrors.New("Transaction abandoned due to insufficient balance")
143143

144144
func moveMoney(db *badger.DB, from, to int) error {
145145
return db.Update(func(txn *badger.Txn) error {

0 commit comments

Comments
 (0)