Skip to content

Commit 2d401fc

Browse files
devvaannshabose
authored andcommitted
fix: docs site build fail issue
1 parent 1daacfd commit 2d401fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/document/Document.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ define(function (require, exports, module) {
4141
*
4242
* __change__ -- When the text of the editor changes (including due to undo/redo).
4343
*
44-
* Passes ({Document}, {'ChangeList'}), where ChangeList is an array
44+
* Passes ({'Document'}, {'ChangeList'}), where ChangeList is an array
4545
* of change record objects. Each change record looks like:
4646
*```js
4747
* { from: start of change, expressed as {line: <line number>, ch: <character offset>},

src/editor/Editor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@ define(function (require, exports, module) {
15371537
* @param {boolean} [center] true to center the viewport
15381538
* @param {number} [centerOptions] Option value, or 0 for no options; one of the BOUNDARY_* constants above.
15391539
* @param {?string} [origin] An optional string that describes what other selection or edit operations this
1540-
* should be merged with for the purposes of undo. See {@link Document#replaceRange} for more details.
1540+
* should be merged with for the purposes of undo. See {@link Document::Document#replaceRange} for more details.
15411541
*/
15421542
Editor.prototype.setSelection = function (start, end, center, centerOptions, origin) {
15431543
this.setSelections([{ start: start, end: end || start }], center, centerOptions, origin);
@@ -1635,7 +1635,7 @@ define(function (require, exports, module) {
16351635
* @param {boolean} center true to center the viewport around the primary selection.
16361636
* @param {number} centerOptions Option value, or 0 for no options; one of the BOUNDARY_* constants above.
16371637
* @param {?string} origin An optional string that describes what other selection or edit operations this
1638-
* should be merged with for the purposes of undo. See {@link Document#replaceRange} for more details.
1638+
* should be merged with for the purposes of undo. See {@link Document::Document#replaceRange} for more details.
16391639
*/
16401640
Editor.prototype.setSelections = function (selections, center, centerOptions, origin) {
16411641
var primIndex = selections.length - 1, options;

src/utils/ExtensionUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ define(function (require, exports, module) {
8484
/**
8585
* Parses LESS code and returns a promise that resolves with plain CSS code.
8686
*
87-
* Pass the {@link url} argument to resolve relative URLs contained in the code.
87+
* Pass the link url argument to resolve relative URLs contained in the code.
8888
* Make sure URLs in the code are wrapped in quotes, like so:
8989
* background-image: url("image.png");
9090
*

0 commit comments

Comments
 (0)