diff --git a/edit-link-form.php b/edit-link-form.php
index ad2c6e5..ec021df 100644
--- a/edit-link-form.php
+++ b/edit-link-form.php
@@ -30,14 +30,56 @@ add_meta_box('linktargetdiv', __('Target'), 'link_target_meta_box', null, 'norma
 add_meta_box('linkxfndiv', __('Link Relationship (XFN)'), 'link_xfn_meta_box', null, 'normal', 'core');
 add_meta_box('linkadvanceddiv', __('Advanced'), 'link_advanced_meta_box', null, 'normal', 'core');
 
+/**
+ * Fires after all built-in meta boxes have been added.
+ *
+ * @since 2.7.0
+ *
+ * @param string  $post_type Post type.
+ * @param object  $link      Link being edited.
+ */
 do_action('add_meta_boxes', 'link', $link);
+
+/**
+ * Fires after all built-in meta boxes have been added.
+ *
+ * @since 3.0.0
+ *
+ * @param object  $link      Link being edited.
+ */
 do_action('add_meta_boxes_link', $link);
 
-/** This action is documented in wp-admin/edit-form-advanced.php */
+/**
+ * Fires after all built-in meta boxes have been added.
+ *
+ * @since 2.7.0
+ *
+ * @param string  'link'     The text 'link' for post type link.
+ * @param string  'normal'   The text 'normal' for normal meta box context.
+ * @param object  $link      Link being edited.
+ */
 do_action('do_meta_boxes', 'link', 'normal', $link);
-/** This action is documented in wp-admin/edit-form-advanced.php */
+
+/**
+ * Fires after all built-in meta boxes have been added.
+ *
+ * @since 2.7.0
+ *
+ * @param string  'link'     The text 'link' for post type link.
+ * @param string  'advanced'   The text 'advanced' for advanced meta box context.
+ * @param object  $link      Link being edited.
+ */
 do_action('do_meta_boxes', 'link', 'advanced', $link);
-/** This action is documented in wp-admin/edit-form-advanced.php */
+
+/**
+ * Fires after all built-in meta boxes have been added.
+ *
+ * @since 2.7.0
+ *
+ * @param string  'link'     The text 'link' for post type link.
+ * @param string  'side'   The text 'side' for side meta box context.
+ * @param object  $link      Link being edited.
+ */
 do_action('do_meta_boxes', 'link', 'side', $link);
 
 add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
@@ -110,6 +152,11 @@ wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>
 <div id="postbox-container-1" class="postbox-container">
 <?php
 
+/**
+ * Fires before submit link box.
+ *
+ * @since 2.5.0
+ */
 do_action('submitlink_box');
 $side_meta_boxes = do_meta_boxes( 'link', 'side', $link );
 
