mirror of
https://github.com/convergencelabs/monaco-collab-ext.git
synced 2024-10-27 20:34:17 +00:00
fixed a few typos, and updated the LICENSE file.
This commit is contained in:
parent
827f8065e0
commit
db0ada10e3
@ -1,5 +1,3 @@
|
||||
Copyright (c) 2019 Convergence Labs, Inc.
|
||||
|
||||
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
|
||||
the Software without restriction, including without limitation the rights to
|
@ -24,7 +24,7 @@ a single linear index or as a 2-dimensional position in the form of
|
||||
|
||||
```JavaScript
|
||||
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'",
|
||||
language: 'javascript'
|
||||
});
|
||||
@ -56,7 +56,7 @@ users working in the same document.
|
||||
|
||||
```JavaScript
|
||||
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'",
|
||||
language: 'javascript'
|
||||
});
|
||||
@ -84,7 +84,7 @@ to the editor.
|
||||
|
||||
```JavaScript
|
||||
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'",
|
||||
language: 'javascript'
|
||||
});
|
||||
|
@ -22,7 +22,7 @@ const tsProject = gulpTypescript.createProject("tsconfig.json", {
|
||||
const exportFilter = "export {};";
|
||||
|
||||
const copyFiles = () =>
|
||||
src(["README.md", "LICENSE.txt", "package.json"])
|
||||
src(["README.md", "LICENSE", "package.json"])
|
||||
.pipe(dest("dist"));
|
||||
|
||||
const copyDocs = () =>
|
||||
|
@ -77,7 +77,7 @@ export class RemoteSelection {
|
||||
private readonly _styleElement: HTMLStyleElement;
|
||||
|
||||
/**
|
||||
* The Monaco editor isntance to render selection into.
|
||||
* The Monaco editor instance to render selection into.
|
||||
* @internal
|
||||
*/
|
||||
private readonly _editor: editor.ICodeEditor;
|
||||
|
@ -9,7 +9,7 @@ import {Validation} from "./Validation";
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user