clipbaord -> clipboard (#16410)

This commit is contained in:
Tony Xia
2021-07-23 08:35:40 -07:00
committed by GitHub
parent c2d45fa01f
commit 880cfc3b59
3 changed files with 3 additions and 3 deletions
@@ -18,7 +18,7 @@ export class BrowserClipboardService implements IClipboardService {
) { }
/**
* Writes the input image as a dataurl to the clipbaord
* Writes the input image as a dataurl to the clipboard
*/
async writeImageDataUrl(data: string): Promise<void> {
// not implemented until web standards catch up
@@ -11,7 +11,7 @@ export const IClipboardService = createDecorator<IClipboardService>('sqlclipboar
export interface IClipboardService extends vsIClipboardService {
/**
* Writes the input image as a dataurl to the clipbaord
* Writes the input image as a dataurl to the clipboard
*/
writeImageDataUrl(data: string): Promise<void>;
}
@@ -18,7 +18,7 @@ export class ClipboardService extends BrowserClipboardService {
}
/**
* Writes the input image as a dataurl to the clipbaord
* Writes the input image as a dataurl to the clipboard
*/
override async writeImageDataUrl(data: string): Promise<void> {
let image = nativeImage.createFromDataURL(data);