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:
parent
dcca48482b
commit
a588a7dd4d
2 changed files with 2 additions and 2 deletions
|
@ -137,7 +137,7 @@ impl Clone for Command {
|
||||||
|
|
||||||
/// Hit count for each command in the palette.
|
/// 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
|
/// 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)]
|
#[derive(Default)]
|
||||||
struct HitCounts(HashMap<String, usize>);
|
struct HitCounts(HashMap<String, usize>);
|
||||||
|
|
||||||
|
|
|
@ -2310,7 +2310,7 @@ impl Editor {
|
||||||
let mut bracket_pair = None;
|
let mut bracket_pair = None;
|
||||||
let mut is_bracket_pair_start = false;
|
let mut is_bracket_pair_start = false;
|
||||||
if !text.is_empty() {
|
if !text.is_empty() {
|
||||||
// `text` can be empty when an user is using IME (e.g. Chinese Wubi Simplified)
|
// `text` can be empty when a user is using IME (e.g. Chinese Wubi Simplified)
|
||||||
// and they are removing the character that triggered IME popup.
|
// and they are removing the character that triggered IME popup.
|
||||||
for (pair, enabled) in scope.brackets() {
|
for (pair, enabled) in scope.brackets() {
|
||||||
if enabled && pair.close && pair.start.ends_with(text.as_ref()) {
|
if enabled && pair.close && pair.start.ends_with(text.as_ref()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue