diff --git a/core/modules/ckeditor/js/ckeditor.stylescombo.admin.es6.js b/core/modules/ckeditor/js/ckeditor.stylescombo.admin.es6.js
index bfc0fda39816e2b093acc01b321a0595465b97a6..b87e6b31860551a12be4e2a34805ed110ff43dc7 100644
--- a/core/modules/ckeditor/js/ckeditor.stylescombo.admin.es6.js
+++ b/core/modules/ckeditor/js/ckeditor.stylescombo.admin.es6.js
@@ -92,7 +92,7 @@
         const element = classes.shift();
 
         // Build the data structure CKEditor's stylescombo plugin expects.
-        // @see http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Styles
+        // @see https://ckeditor.com/docs/ckeditor4/latest/guide/dev_howtos_styles.html
         stylesSet.push({
           attributes: { class: classes.join(' ') },
           element,
diff --git a/core/modules/ckeditor/src/CKEditorPluginInterface.php b/core/modules/ckeditor/src/CKEditorPluginInterface.php
index 543a112dfb6300c652015fbf77cd0034b1773ae4..a5052dce61f6f59fe3f2ca0ffe8c9a08f3316e97 100644
--- a/core/modules/ckeditor/src/CKEditorPluginInterface.php
+++ b/core/modules/ckeditor/src/CKEditorPluginInterface.php
@@ -68,8 +68,8 @@ public function getLibraries(Editor $editor);
   /**
    * Returns the Drupal root-relative file path to the plugin JavaScript file.
    *
-   * Note: this does not use a Drupal library because this uses CKEditor's API,
-   * see http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.resourceManager.html#addExternal.
+   * Note: this does not use a Drupal library because this uses CKEditor's API.
+   * @see https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_resourceManager.html#method-addExternal
    *
    * @return string|false
    *   The Drupal root-relative path to the file, FALSE if an internal plugin.
diff --git a/core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php b/core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php
index 5e45bde777424439876a5f969b09b3b584316853..dc7595a67ddfc961038484185157ebf5c6ef008f 100644
--- a/core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php
+++ b/core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php
@@ -150,7 +150,7 @@ protected function generateStylesSetSetting($styles) {
       $element = array_shift($classes);
 
       // Build the data structure CKEditor's stylescombo plugin expects.
-      // @see http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Styles
+      // @see https://ckeditor.com/docs/ckeditor4/latest/guide/dev_howtos_styles.html
       $configured_style = [
         'name' => trim($label),
         'element' => trim($element),