Skip to content

Commit

Permalink
fixed a few typos, and updated the LICENSE file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmacfadden committed Nov 30, 2019
1 parent 827f806 commit db0ada1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions LICENSE.txt → LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
});
Expand Down Expand Up @@ -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'
});
Expand Down Expand Up @@ -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'
});
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = () =>
Expand Down
2 changes: 1 addition & 1 deletion src/ts/RemoteSelection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/ts/RemoteSelectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit db0ada1

Please sign in to comment.