docs: fix typos in source code and documentation (#13577)

This commit is contained in:
fancivez
2025-11-21 22:59:42 +08:00
committed by GitHub
parent 8d082a904d
commit 0f0b463a2f
13 changed files with 14 additions and 14 deletions

View File

@@ -185,7 +185,7 @@ export const DebugProfiler = () => {
return;
}
// Only update the UX infrequently as updating the UX itself will cause
// frames to run so can disturb what we are measuing.
// frames to run so can disturb what we are measuring.
const forceRefreshInterval = setInterval(() => {
setForceRefresh((f) => f + 1);
profiler.reportAction();

View File

@@ -708,7 +708,7 @@ export const InputPrompt: React.FC<InputPromptProps> = ({
// newline that was part of the paste.
// This has the added benefit that in the worst case at least users
// get some feedback that their keypress was handled rather than
// wondering why it was completey ignored.
// wondering why it was completely ignored.
buffer.newline();
return;
}