diff --git a/core/misc/debounce.js b/core/misc/debounce.js
index 670c1e5..676766c 100644
--- a/core/misc/debounce.js
+++ b/core/misc/debounce.js
@@ -11,10 +11,10 @@
  * function can be written in such a way that it is only invoked under specific
  * conditions.
  *
- * @param {Function} callback
+ * @param Function callback
  *   The function to be invoked.
  *
- * @param {Number} wait
+ * @param Number wait
  *   The time period within which the callback function should only be
  *   invoked once. For example if the wait period is 250ms, then the callback
  *   will only be called at most 4 times per second.
diff --git a/core/misc/displace.js b/core/misc/displace.js
index 32e4db3..48d7f8b 100644
--- a/core/misc/displace.js
+++ b/core/misc/displace.js
@@ -34,11 +34,11 @@
   /**
    * Informs listeners of the current offset dimensions.
    *
-   * @param {boolean} broadcast
+   * @param Boolean broadcast
    *   (optional) When true or undefined, causes the recalculated offsets values to be
    *   broadcast to listeners.
    *
-   * @return {object}
+   * @return Object
    *   An object whose keys are the for sides an element -- top, right, bottom
    *   and left. The value of each key is the viewport displacement distance for
    *   that edge.
@@ -54,7 +54,7 @@
   /**
    * Determines the viewport offsets.
    *
-   * @return {object}
+   * @return Object
    *   An object whose keys are the for sides an element -- top, right, bottom
    *   and left. The value of each key is the viewport displacement distance for
    *   that edge.
@@ -76,11 +76,11 @@
    * numeric value, that value will be used. If no value is provided, one will
    * be calculated using the element's dimensions and placement.
    *
-   * @param {string} edge
+   * @param String edge
    *   The name of the edge to calculate. Can be 'top', 'right',
    *   'bottom' or 'left'.
    *
-   * @return {number}
+   * @return Number
    *   The viewport displacement distance for the requested edge.
    */
   function calculateOffset (edge) {
@@ -111,14 +111,14 @@
   /**
    * Calculates displacement for element based on its dimensions and placement.
    *
-   * @param {jQuery} $el
+   * @param jQuery $el
    *   The jQuery element whose dimensions and placement will be measured.
    *
-   * @param {string} edge
+   * @param String edge
    *   The name of the edge of the viewport that the element is associated
    *   with.
    *
-   * @return {number}
+   * @return Number
    *   The viewport displacement distance for the requested edge.
    */
   function getRawOffset (el, edge) {
diff --git a/core/misc/dropbutton/dropbutton.js b/core/misc/dropbutton/dropbutton.js
index daebca2..69a33eb 100644
--- a/core/misc/dropbutton/dropbutton.js
+++ b/core/misc/dropbutton/dropbutton.js
@@ -36,12 +36,12 @@ function dropbuttonClickHandler (e) {
  * All secondary actions beyond the first in the list are presented in a
  * dropdown list accessible through a toggle arrow associated with the button.
  *
- * @param {jQuery} $dropbutton
+ * @param jQuery $dropbutton
  *   A jQuery element.
  *
- * @param {Object} settings
+ * @param Object settings
  *   A list of options including:
- *    - {String} title: The text inside the toggle link element. This text is
+ *    - String title: The text inside the toggle link element. This text is
  *      hidden from visual UAs.
  */
 function DropButton (dropbutton, settings) {
@@ -90,7 +90,7 @@ $.extend(DropButton, {
   /**
    * Store all processed DropButtons.
    *
-   * @type {Array}
+   * @type Array
    */
   dropbuttons: []
 });
@@ -102,7 +102,7 @@ $.extend(DropButton.prototype, {
   /**
    * Toggle the dropbutton open and closed.
    *
-   * @param {Boolean} show
+   * @param Boolean show
    *   (optional) Force the dropbutton to open by passing true or to close by
    *   passing false.
    */
@@ -146,11 +146,11 @@ $.extend(Drupal.theme, {
   /**
    * A toggle is an interactive element often bound to a click handler.
    *
-   * @param {Object} options
-   *   - {String} title: (optional) The HTML anchor title attribute and
+   * @param Object options
+   *   - String title: (optional) The HTML anchor title attribute and
    *     text for the inner span element.
    *
-   * @return {String}
+   * @return String
    *   A string representing a DOM fragment.
    */
   dropbuttonToggle: function (options) {
diff --git a/core/misc/matchmedia.js b/core/misc/matchmedia.js
index a26723a..ea4680e 100644
--- a/core/misc/matchmedia.js
+++ b/core/misc/matchmedia.js
@@ -30,7 +30,7 @@ window.matchMedia = window.matchMedia || (function (doc, window, Drupal) {
   /**
    * A replacement for the native MediaQueryList object.
    *
-   * @param {String} q
+   * @param String q
    *   A media query e.g. "screen" or "screen and (min-width: 28em)".
    */
   function MediaQueryList (q) {
@@ -60,10 +60,10 @@ window.matchMedia = window.matchMedia || (function (doc, window, Drupal) {
     /**
      * Polyfill the addListener method of the MediaQueryList object.
      *
-     * @param {Function} callback
+     * @param Function callback
      *   The callback to be invoked when the media query is applicable.
      *
-     * @return {Object MediaQueryList}
+     * @return Object MediaQueryList
      *   A MediaQueryList object that indicates whether the registered media
      *   query applies. The matches property is true when the media query
      *   applies and false when not. The original media query is referenced in
@@ -99,7 +99,7 @@ window.matchMedia = window.matchMedia || (function (doc, window, Drupal) {
     /**
      * Polyfill the removeListener method of the MediaQueryList object.
      *
-     * @param {Function} callback
+     * @param Function callback
      *   The callback to be removed from the set of listeners.
      */
     removeListener: function (callback) {
@@ -123,7 +123,7 @@ window.matchMedia = window.matchMedia || (function (doc, window, Drupal) {
   /**
    * Return a MediaQueryList.
    *
-   * @param {String} q
+   * @param String q
    *   A media query e.g. "screen" or "screen and (min-width: 28em)". The media
    *   query is checked for applicability before the object is returned.
    */
diff --git a/core/misc/tabledrag.js b/core/misc/tabledrag.js
index 5254224..ff22ce6 100644
--- a/core/misc/tabledrag.js
+++ b/core/misc/tabledrag.js
@@ -211,7 +211,7 @@ Drupal.tableDrag.prototype.addColspanClass = function(columnIndex) {
 /**
  * Hide or display weight columns. Triggers an event on change.
  *
- * @param bool displayWeight
+ * @param Boolean displayWeight
  *   'true' will show weight columns.
  */
 Drupal.tableDrag.prototype.displayColumns = function (displayWeight) {
diff --git a/core/misc/tableheader.js b/core/misc/tableheader.js
index f1aba96..ce47e74 100644
--- a/core/misc/tableheader.js
+++ b/core/misc/tableheader.js
@@ -112,7 +112,7 @@ $.extend(TableHeader, {
   /**
    * This will store the state of all processed tables.
    *
-   * @type {Array}
+   * @type Array
    */
   tables: []
 });
diff --git a/core/modules/ckeditor/js/ckeditor.admin.js b/core/modules/ckeditor/js/ckeditor.admin.js
index 5ccc7ec..cdda6c3 100644
--- a/core/modules/ckeditor/js/ckeditor.admin.js
+++ b/core/modules/ckeditor/js/ckeditor.admin.js
@@ -249,10 +249,10 @@ Drupal.behaviors.ckeditorAdmin = {
 /**
  * Returns a string describing the type and index of a toolbar row.
  *
- * @param {jQuery} $row
+ * @param jQuery $row
  *   A jQuery object containing a .ckeditor-button row.
  *
- * @return {String}
+ * @return String
  *   A string describing the type and index of a toolbar row.
  */
 function getRowInfo ($row) {
@@ -277,7 +277,7 @@ function getRowInfo ($row) {
  * toolbar row. When a row is focused, the state change is announced through
  * the aria-live message area.
  *
- * @param {jQuery} event
+ * @param jQuery event
  *   A jQuery event.
  */
 function grantRowFocus (event) {
diff --git a/core/modules/contextual/contextual.toolbar.js b/core/modules/contextual/contextual.toolbar.js
index 0059868..c6f2857 100644
--- a/core/modules/contextual/contextual.toolbar.js
+++ b/core/modules/contextual/contextual.toolbar.js
@@ -163,7 +163,7 @@ Drupal.contextualToolbar = {
      *
      * @param Drupal.contextualToolbar.Model model
      *   A Drupal.contextualToolbar.Model model.
-     * @param bool isViewing
+     * @param Boolean isViewing
      *   The value of the isViewing attribute in the model.
      */
     persist: function (model, isViewing) {
@@ -208,7 +208,7 @@ Drupal.contextualToolbar = {
      *
      * @param Drupal.contextualToolbar.Model model
      *   A Drupal.contextualToolbar.Model model.
-     * @param bool isViewing
+     * @param Boolean isViewing
      *   The value of the isViewing attribute in the model.
      */
     manageTabbing: function () {
diff --git a/core/modules/overlay/overlay-parent.js b/core/modules/overlay/overlay-parent.js
index a8a32d6..36d24a5 100644
--- a/core/modules/overlay/overlay-parent.js
+++ b/core/modules/overlay/overlay-parent.js
@@ -359,7 +359,7 @@ Drupal.overlay.setFocusBefore = function ($element, document) {
  * @param url
  *   The URL to be tested.
  *
- * @return boolean
+ * @return Boolean
  *   TRUE if the URL represents an administrative link, FALSE otherwise.
  */
 Drupal.overlay.isAdminLink = function (url) {
@@ -394,7 +394,7 @@ Drupal.overlay.isAdminLink = function (url) {
  * @param url
  *   The URL to be tested.
  *
- * @return boolean
+ * @return Boolean
  *   TRUE if the URL is external to the site, FALSE otherwise.
  */
 Drupal.overlay.isExternalLink = function (url) {
@@ -405,10 +405,10 @@ Drupal.overlay.isExternalLink = function (url) {
 /**
  * Responds to the drupalViewportOffsetChange event.
  *
- * @param object event
+ * @param Object event
  *   A jQuery event object.
  *
- * @param object offsets
+ * @param Object offsets
  *   An object whose keys are the for sides an element -- top, right, bottom
  *   and left. The value of each key is the viewport displacement distance for
  *   that edge.
diff --git a/core/modules/toolbar/js/toolbar.js b/core/modules/toolbar/js/toolbar.js
index 50c6cdd..9c28925 100644
--- a/core/modules/toolbar/js/toolbar.js
+++ b/core/modules/toolbar/js/toolbar.js
@@ -168,10 +168,10 @@ Drupal.toolbar.toggleTray = function (event) {
 /**
  * Repositions trays and sets body padding according to the height of the bar.
  *
- * @param {Event} event
+ * @param Event event
  *   - jQuery Event object.
  *
- * @param {Object} offsets
+ * @param Object offsets
  *   - Contains for keys -- top, right, bottom and left -- that indicate the
  *   viewport offset distances calculated by Drupal.displace().
  */
@@ -237,10 +237,10 @@ Drupal.toolbar.orientationChangeHandler = function (event) {
 /**
  * Change the orientation of the tray between vertical and horizontal.
  *
- * @param {String} newOrientation
+ * @param String newOrientation
  *   Either 'vertical' or 'horizontal'. The orientation to change the tray to.
  *
- * @param {Boolean} isLock
+ * @param Boolean isLock
  *   Whether the orientation of the tray should be locked if it is being toggled
  *   to vertical.
  */
@@ -316,7 +316,7 @@ function updatePeripherals () {
  *
  * The message will be read by speaking User Agents.
  *
- * @param {String} message
+ * @param String message
  *   A string to be inserted into the message area.
  */
 function setMessage (message) {
@@ -326,7 +326,7 @@ function setMessage (message) {
 /**
  * A toggle is an interactive element often bound to a click handler.
  *
- * @return {String}
+ * @return String
  *   A string representing a DOM fragment.
  */
 Drupal.theme.toolbarOrientationToggle = function () {
@@ -338,7 +338,7 @@ Drupal.theme.toolbarOrientationToggle = function () {
 /**
  * A region to post messages that a screen reading UA will announce.
  *
- * @return {String}
+ * @return String
  *   A string representing a DOM fragment.
  */
 Drupal.theme.toolbarMessageBox = function () {
@@ -348,7 +348,7 @@ Drupal.theme.toolbarMessageBox = function () {
 /**
  * Wrap a message string in a p tag.
  *
- * @return {String}
+ * @return String
  *   A string representing a DOM fragment.
  */
 Drupal.theme.toolbarTrayMessage = function (message) {
diff --git a/core/modules/toolbar/js/toolbar.menu.js b/core/modules/toolbar/js/toolbar.menu.js
index f05bcb0..f4c8bcf 100644
--- a/core/modules/toolbar/js/toolbar.menu.js
+++ b/core/modules/toolbar/js/toolbar.menu.js
@@ -23,7 +23,7 @@ var activeItem = drupalSettings.basePath + drupalSettings.currentPath;
     /**
      * Handle clicks from the disclosure button on an item with sub-items.
      *
-     * @param {Object} event
+     * @param Object event
      *   A jQuery Event object.
      */
     function toggleClickHandler (event) {
@@ -40,10 +40,10 @@ var activeItem = drupalSettings.basePath + drupalSettings.currentPath;
     /**
      * Toggle the open/close state of a list is a menu.
      *
-     * @param {jQuery} $item
+     * @param jQuery $item
      *   The li item to be toggled.
      *
-     * @param {Boolean} switcher
+     * @param Boolean switcher
      *   A flag that forces toggleClass to add or a remove a class, rather than
      *   simply toggling its presence.
      */
@@ -68,7 +68,7 @@ var activeItem = drupalSettings.basePath + drupalSettings.currentPath;
      * classed with .box. The .box div provides a positioning context for the
      * item list toggle.
      *
-     * @param {jQuery} $menu
+     * @param jQuery $menu
      *   The root of the menu to be initialized.
      */
     function initItems ($menu) {
@@ -96,10 +96,10 @@ var activeItem = drupalSettings.basePath + drupalSettings.currentPath;
      * This function is called recursively on each sub level of lists elements
      * until the depth of the menu is exhausted.
      *
-     * @param {jQuery} $lists
+     * @param jQuery $lists
      *   A jQuery object of ul elements.
      *
-     * @param {Integer} level
+     * @param Integer level
      *   The current level number to be assigned to the list elements.
      */
     function markListLevels ($lists, level) {
@@ -116,7 +116,7 @@ var activeItem = drupalSettings.basePath + drupalSettings.currentPath;
      * Marks the trail of the active link in the menu back to the root of the
      * menu with .active-trail.
      *
-     * @param {jQuery} $menu
+     * @param jQuery $menu
      *   The root of the menu.
      */
     function openActiveItem ($menu) {
@@ -149,7 +149,7 @@ var activeItem = drupalSettings.basePath + drupalSettings.currentPath;
   /**
    * A toggle is an interactive element often bound to a click handler.
    *
-   * @return {String}
+   * @return String
    *   A string representing a DOM fragment.
    */
   Drupal.theme.toolbarMenuItemToggle = function (options) {
