fixed a few typos, and updated the LICENSE file.

This commit is contained in:
Michael MacFadden 2019-11-29 17:25:59 -08:00
parent 827f8065e0
commit db0ada10e3
5 changed files with 6 additions and 8 deletions

View File

@ -1,5 +1,3 @@
Copyright (c) 2019 Convergence Labs, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to the Software without restriction, including without limitation the rights to

View File

@ -24,7 +24,7 @@ a single linear index or as a 2-dimensional position in the form of
```JavaScript ```JavaScript
const editor = monaco.editor.create(document.getElementById("editor"), { const editor = monaco.editor.create(document.getElementById("editor"), {
value: "function helloWolrd = () => { console.log('hello world!')", value: "function helloWorld = () => { console.log('hello world!')",
theme: "vs-dark'", theme: "vs-dark'",
language: 'javascript' language: 'javascript'
}); });
@ -56,7 +56,7 @@ users working in the same document.
```JavaScript ```JavaScript
const editor = monaco.editor.create(document.getElementById("editor"), { const editor = monaco.editor.create(document.getElementById("editor"), {
value: "function helloWolrd = () => { console.log('hello world!')", value: "function helloWorld = () => { console.log('hello world!')",
theme: "vs-dark'", theme: "vs-dark'",
language: 'javascript' language: 'javascript'
}); });
@ -84,7 +84,7 @@ to the editor.
```JavaScript ```JavaScript
const editor = monaco.editor.create(document.getElementById("editor"), { const editor = monaco.editor.create(document.getElementById("editor"), {
value: "function helloWolrd = () => { console.log('hello world!')", value: "function helloWorld = () => { console.log('hello world!')",
theme: "vs-dark'", theme: "vs-dark'",
language: 'javascript' language: 'javascript'
}); });

View File

@ -22,7 +22,7 @@ const tsProject = gulpTypescript.createProject("tsconfig.json", {
const exportFilter = "export {};"; const exportFilter = "export {};";
const copyFiles = () => const copyFiles = () =>
src(["README.md", "LICENSE.txt", "package.json"]) src(["README.md", "LICENSE", "package.json"])
.pipe(dest("dist")); .pipe(dest("dist"));
const copyDocs = () => const copyDocs = () =>

View File

@ -77,7 +77,7 @@ export class RemoteSelection {
private readonly _styleElement: HTMLStyleElement; private readonly _styleElement: HTMLStyleElement;
/** /**
* The Monaco editor isntance to render selection into. * The Monaco editor instance to render selection into.
* @internal * @internal
*/ */
private readonly _editor: editor.ICodeEditor; private readonly _editor: editor.ICodeEditor;

View File

@ -9,7 +9,7 @@ import {Validation} from "./Validation";
*/ */
export interface IRemoteSelectionManagerOptions { export interface IRemoteSelectionManagerOptions {
/** /**
* The Monaco Editor instace to render the remote selections into. * The Monaco Editor instance to render the remote selections into.
*/ */
editor: monaco.editor.ICodeEditor; editor: monaco.editor.ICodeEditor;
} }