From 211db405e4a22efab2c321d136eb6c5e89f0980d Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Mon, 12 Jan 2015 14:07:51 +0000 Subject: [PATCH] Issue #2403097 by sergei_brill: Update format_date docblock (incorrect @see) --- core/includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/includes/common.inc b/core/includes/common.inc index 5b1469dd45b9..409fa67d4c84 100644 --- a/core/includes/common.inc +++ b/core/includes/common.inc @@ -420,7 +420,7 @@ function format_size($size, $langcode = NULL) { * @return * A translated date string in the requested format. * - * @see \Drupal\Component\Datetime\DateFormatter::format() + * @see \Drupal\Core\Datetime\DateFormatter::format() */ function format_date($timestamp, $type = 'medium', $format = '', $timezone = NULL, $langcode = NULL) { return \Drupal::service('date.formatter')->format($timestamp, $type, $format, $timezone, $langcode);