chore: fix typo in 'succesful_downloads' to 'successful_downloads'#6204
Open
gap-editor wants to merge 2 commits intolambdaclass:mainfrom
Open
chore: fix typo in 'succesful_downloads' to 'successful_downloads'#6204gap-editor wants to merge 2 commits intolambdaclass:mainfrom
gap-editor wants to merge 2 commits intolambdaclass:mainfrom
Conversation
Greptile OverviewGreptile SummaryThis PR fixes a typo in the variable name Confidence Score: 0/5
|
| Filename | Overview |
|---|---|
| crates/networking/p2p/sync/healing/storage.rs | Typo fix incomplete - one instance of the misspelled variable succesful_downloads remains on line 197, will cause compilation error |
Last reviewed commit: fd651bd
| succesful_downloads_percentage = state.succesful_downloads as f64 | ||
| successful_downloads = state.successful_downloads, | ||
| successful_downloads_percentage = state.successful_downloads as f64 | ||
| / (state.succesful_downloads as f64 + state.failed_downloads as f64), |
There was a problem hiding this comment.
Missed one instance - still using the old misspelled variable name succesful_downloads instead of successful_downloads
Suggested change
| / (state.succesful_downloads as f64 + state.failed_downloads as f64), | |
| / (state.successful_downloads as f64 + state.failed_downloads as f64), |
Prompt To Fix With AI
This is a comment left during a code review.
Path: crates/networking/p2p/sync/healing/storage.rs
Line: 197:197
Comment:
Missed one instance - still using the old misspelled variable name `succesful_downloads` instead of `successful_downloads`
```suggestion
/ (state.successful_downloads as f64 + state.failed_downloads as f64),
```
How can I resolve this? If you propose a fix, please make it concise.
ElFantasma
requested changes
Feb 13, 2026
Co-authored-by: ElFantasma <estebandh@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
Checklist
STORE_SCHEMA_VERSION(crates/storage/lib.rs) if the PR includes breaking changes to theStorerequiring a re-sync.Closes #issue_number