diff --git a/core/includes/form.inc b/core/includes/form.inc
index 926b149..e1e27e0 100644
--- a/core/includes/form.inc
+++ b/core/includes/form.inc
@@ -288,18 +288,6 @@ function drupal_prepare_form($form_id, &$form, &$form_state) {
 }
 
 /**
- * Validates user-submitted form data in the $form_state array.
- *
- * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
- *   Use \Drupal::formBuilder()->validateForm().
- *
- * @see \Drupal\Core\Form\FormValidatorInterface::validateForm().
- */
-function drupal_validate_form($form_id, &$form, &$form_state) {
-  \Drupal::formBuilder()->validateForm($form_id, $form, $form_state);
-}
-
-/**
  * Redirects the user to a URL after a form has been processed.
  *
  * @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
diff --git a/core/modules/system/tests/modules/form_test/form_test.module b/core/modules/system/tests/modules/form_test/form_test.module
index 340c1f9..34e6242 100644
--- a/core/modules/system/tests/modules/form_test/form_test.module
+++ b/core/modules/system/tests/modules/form_test/form_test.module
@@ -81,7 +81,7 @@ function system_form_form_test_alter_form_alter(&$form, &$form_state) {
 }
 
 /**
- * Form builder for testing drupal_validate_form().
+ * Form builder for testing \Drupal\Core\Form\FormValidatorInterface::validateForm().
  *
  * Serves for testing form processing and alterations by form validation
  * handlers, especially for the case of a validation error:
