@@ -129,7 +129,7 @@ function uniqueSplice(array, spliceIdx, spliceCount, newElems, parent) {
129129 * // </ul>
130130 *
131131 * @param {string | Cheerio } target - Element to append elements to.
132- * @see {@link http ://api.jquery.com/appendTo/ }
132+ * @see {@link https ://api.jquery.com/appendTo/ }
133133 *
134134 * @returns {Cheerio } The instance itself.
135135 */
@@ -162,7 +162,7 @@ exports.appendTo = function (target) {
162162 * // </ul>
163163 *
164164 * @param {string | Cheerio } target - Element to prepend elements to.
165- * @see {@link http ://api.jquery.com/prependTo/ }
165+ * @see {@link https ://api.jquery.com/prependTo/ }
166166 *
167167 * @returns {Cheerio } The instance itself.
168168 */
@@ -196,7 +196,7 @@ exports.prependTo = function (target) {
196196 *
197197 * @function
198198 *
199- * @see {@link http ://api.jquery.com/append/ }
199+ * @see {@link https ://api.jquery.com/append/ }
200200 */
201201exports . append = _insert ( function ( dom , children , parent ) {
202202 uniqueSplice ( children , children . length , 0 , dom , parent ) ;
@@ -217,7 +217,7 @@ exports.append = _insert(function (dom, children, parent) {
217217 *
218218 * @function
219219 *
220- * @see {@link http ://api.jquery.com/prepend/ }
220+ * @see {@link https ://api.jquery.com/prepend/ }
221221 */
222222exports . prepend = _insert ( function ( dom , children , parent ) {
223223 uniqueSplice ( children , 0 , 0 , dom , parent ) ;
@@ -303,7 +303,7 @@ function _wrap(insert) {
303303 *
304304 * @param {Cheerio } wrapper - The DOM structure to wrap around each element in
305305 * the selection.
306- * @see {@link http ://api.jquery.com/wrap/ }
306+ * @see {@link https ://api.jquery.com/wrap/ }
307307 */
308308exports . wrap = _wrap ( function ( el , elInsertLocation , wrapperDom ) {
309309 var parent = el . parent ;
@@ -353,7 +353,7 @@ exports.wrap = _wrap(function (el, elInsertLocation, wrapperDom) {
353353 *
354354 * @param {Cheerio } wrapper - The DOM structure to wrap around the content of
355355 * each element in the selection.
356- * @see {@link http ://api.jquery.com/wrapInner/ }
356+ * @see {@link https ://api.jquery.com/wrapInner/ }
357357 */
358358exports . wrapInner = _wrap ( function ( el , elInsertLocation , wrapperDom ) {
359359 updateDOM ( el . children , elInsertLocation ) ;
@@ -453,7 +453,7 @@ exports.wrapAll = function (wrapper) {
453453 * // <li class="pear">Pear</li>
454454 * // </ul>
455455 *
456- * @see {@link http ://api.jquery.com/after/ }
456+ * @see {@link https ://api.jquery.com/after/ }
457457 *
458458 * @returns {Cheerio } The instance itself.
459459 */
@@ -499,7 +499,7 @@ exports.after = function () {
499499 * // </ul>
500500 *
501501 * @param {string | Cheerio } target - Element to insert elements after.
502- * @see {@link http ://api.jquery.com/insertAfter/ }
502+ * @see {@link https ://api.jquery.com/insertAfter/ }
503503 *
504504 * @returns {Cheerio } The set of newly inserted elements.
505505 */
@@ -549,7 +549,7 @@ exports.insertAfter = function (target) {
549549 * // <li class="pear">Pear</li>
550550 * // </ul>
551551 *
552- * @see {@link http ://api.jquery.com/before/ }
552+ * @see {@link https ://api.jquery.com/before/ }
553553 *
554554 * @returns {Cheerio } The instance itself.
555555 */
@@ -595,7 +595,7 @@ exports.before = function () {
595595 * // </ul>
596596 *
597597 * @param {string | Cheerio } target - Element to insert elements before.
598- * @see {@link http ://api.jquery.com/insertBefore/ }
598+ * @see {@link https ://api.jquery.com/insertBefore/ }
599599 *
600600 * @returns {Cheerio } The set of newly inserted elements.
601601 */
@@ -645,7 +645,7 @@ exports.insertBefore = function (target) {
645645 * // </ul>
646646 *
647647 * @param {string } [selector] - Optional selector for elements to remove.
648- * @see {@link http ://api.jquery.com/remove/ }
648+ * @see {@link https ://api.jquery.com/remove/ }
649649 *
650650 * @returns {Cheerio } The instance itself.
651651 */
@@ -675,7 +675,7 @@ exports.remove = function (selector) {
675675 * // </ul>
676676 *
677677 * @param {Cheerio | Function } content - Replacement for matched elements.
678- * @see {@link http ://api.jquery.com/replaceWith/ }
678+ * @see {@link https ://api.jquery.com/replaceWith/ }
679679 *
680680 * @returns {Cheerio } The instance itself.
681681 */
@@ -714,7 +714,7 @@ exports.replaceWith = function (content) {
714714 * $.html();
715715 * //=> <ul id="fruits"></ul>
716716 *
717- * @see {@link http ://api.jquery.com/empty/ }
717+ * @see {@link https ://api.jquery.com/empty/ }
718718 *
719719 * @returns {Cheerio } The instance itself.
720720 */
@@ -740,7 +740,7 @@ exports.empty = function () {
740740 * //=> <li class="mango">Mango</li>
741741 *
742742 * @param {string } str - If specified used to replace selection's contents.
743- * @see {@link http ://api.jquery.com/html/ }
743+ * @see {@link https ://api.jquery.com/html/ }
744744 *
745745 * @returns {Cheerio } The instance itself.
746746 */
@@ -789,7 +789,7 @@ exports.toString = function () {
789789 * // Pear
790790 *
791791 * @param {string } [str] - If specified replacement for the selected element's contents.
792- * @see {@link http ://api.jquery.com/text/ }
792+ * @see {@link https ://api.jquery.com/text/ }
793793 *
794794 * @returns {Cheerio | string } The instance itself when setting text, otherwise
795795 * the rendered document.
@@ -823,7 +823,7 @@ exports.text = function (str) {
823823 * @example
824824 * const moreFruit = $('#fruits').clone();
825825 *
826- * @see {@link http ://api.jquery.com/clone/ }
826+ * @see {@link https ://api.jquery.com/clone/ }
827827 *
828828 * @returns {Cheerio } The cloned object.
829829 */
0 commit comments