fix: correct typos in comments and remove leftover debug println#5871
Open
immanuwell wants to merge 2 commits into
Open
fix: correct typos in comments and remove leftover debug println#5871immanuwell wants to merge 2 commits into
immanuwell wants to merge 2 commits into
Conversation
Signed-off-by: immanuwell <pchpr.00@list.ru>
ShadowCurse
approved these changes
May 12, 2026
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #5871 +/- ##
=======================================
Coverage 82.80% 82.80%
=======================================
Files 277 277
Lines 29892 29892
=======================================
Hits 24753 24753
Misses 5139 5139
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
Hi @immanuwell, can you please update the commit message body with info from the PR description? Otherwise the CI style check will fail. |
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.
What
Handful of spelling/grammar fixes scattered across the codebase, plus one debug
println!that got left in a test during the bincode→bitcode migration.Typos fixed:
calcuated→calculated(aarch64 PC register doc)accomodate→accommodate(net metrics comment)recieved→received(balloon device doc)occured→occurred(snapshot error enum, mmds, vsock muxer)preceeding→preceding(snapshot CRC comment)bigger/more/smaller then→...than(regs, amd cpuid normalize, snapshot-editor)Debug println removed:
src/vmm/src/snapshot/mod.rs— added in 37480d9 (bincode→bitcode migration) with a literal comment// Debug: print the length to understand what's happening. Never cleaned up.How to reproduce
Both greps should come back empty after this patch.
Testing
No logic changed — only comments, doc strings, an error enum message, and one test-only
println!. Existing tests cover all the affected code paths.