Fix some typos in comments (#7169)

This PR fixes a couple typos I found in some comments/doc comments.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-01-31 16:21:33 -05:00 committed by GitHub
parent dcca48482b
commit a588a7dd4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -137,7 +137,7 @@ impl Clone for Command {
/// Hit count for each command in the palette.
/// We only account for commands triggered directly via command palette and not by e.g. keystrokes because
/// if an user already knows a keystroke for a command, they are unlikely to use a command palette to look for it.
/// if a user already knows a keystroke for a command, they are unlikely to use a command palette to look for it.
#[derive(Default)]
struct HitCounts(HashMap<String, usize>);