Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vs/platform/files/node/watcher/parcel/parcelWatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class ParcelWatcher extends BaseWatcher implements IRecursiveWatcherWithS
// to schedule sufficiently after Parcel.
//
// Note: since Parcel 2.0.7, the very first event is
// emitted without delay if no events occured over a
// emitted without delay if no events occurred over a
// duration of 500ms. But we always want to aggregate
// events to apply our coleasing logic.
//
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/api/common/extHostTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3122,7 +3122,7 @@ export class ChatResponseMarkdownPart {

/**
* TODO if 'vulnerabilities' is finalized, this should be merged with the base ChatResponseMarkdownPart. I just don't see how to do that while keeping
* vulnerabilities in a seperate API proposal in a clean way.
* vulnerabilities in a separate API proposal in a clean way.
*/
export class ChatResponseMarkdownWithVulnerabilitiesPart {
value: vscode.MarkdownString;
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/browser/replViewer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ export class ReplAccessibilityProvider implements IListAccessibilityProvider<IRe
return localize('replVariableAriaLabel', "Variable {0}, value {1}", element.name, element.value);
}
if (element instanceof ReplOutputElement || element instanceof ReplEvaluationInput || element instanceof ReplEvaluationResult) {
return element.value + (element instanceof ReplOutputElement && element.count > 1 ? localize({ key: 'occurred', comment: ['Front will the value of the debug console element. Placeholder will be replaced by a number which represents occurrance count.'] },
return element.value + (element instanceof ReplOutputElement && element.count > 1 ? localize({ key: 'occurred', comment: ['Front will the value of the debug console element. Placeholder will be replaced by a number which represents occurrence count.'] },
", occurred {0} times", element.count) : '');
}
if (element instanceof RawObjectReplElement) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1686,11 +1686,11 @@ export class FileDragAndDrop implements ITreeDragAndDrop<ExplorerItem> {

if (items.some((source) => {
if (source.isRoot) {
return false; // Root folders are handled seperately
return false; // Root folders are handled separately
}

if (this.uriIdentityService.extUri.isEqual(source.resource, target.resource)) {
return true; // Can not move anything onto itself excpet for root folders
return true; // Can not move anything onto itself except for root folders
}

if (!isCopy && this.uriIdentityService.extUri.isEqual(dirname(source.resource), target.resource)) {
Expand Down
Loading