Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Fix typo in CSSUtils.js #15335

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/language/CSSUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ define(function (require, exports, module) {

/**
* @private
* Gets all of the space/comma seperated tokens before the the current cursor position.
* Gets all of the space/comma separated tokens before the the current cursor position.
* @param {editor:{CodeMirror}, pos:{ch:{string}, line:{number}}, token:{object}} context
* @return {?Array.<string>} An array of all the space/comma seperated tokens before the
* @return {?Array.<string>} An array of all the space/comma separated tokens before the
* current cursor position
*/
function _getPrecedingPropValues(ctx) {
Expand Down Expand Up @@ -341,10 +341,10 @@ define(function (require, exports, module) {

/**
* @private
* Gets all of the space/comma seperated tokens after the the current cursor position.
* Gets all of the space/comma separated tokens after the the current cursor position.
* @param {editor:{CodeMirror}, pos:{ch:{string}, line:{number}}, token:{object}} context
* @param {string} currentValue The token string at the current cursor position
* @return {?Array.<string>} An array of all the space/comma seperated tokens after the
* @return {?Array.<string>} An array of all the space/comma separated tokens after the
* current cursor position
*/
function _getSucceedingPropValues(ctx, currentValue) {
Expand Down