From ee398a1de0d6fca9479dc510271ebfcf3d5dad5f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 3 Jan 2014 21:25:52 +0530 Subject: [PATCH] Doc comment improvements Signed-off-by: Madhura Jayaratne --- libraries/pmd_common.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index 8538fbb48c..8b2dfdb2a1 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -4,7 +4,7 @@ * @package PhpMyAdmin-Designer */ /** - * block attempts to directly run this script + * Block attempts to directly run this script */ if (getcwd() == dirname(__FILE__)) { die('Attack stopped'); @@ -22,7 +22,7 @@ $GLOBALS['PMD']['STYLE'] = 'default'; $cfgRelation = PMA_getRelationsParam(); /** - * retrieves table info and stores it in $GLOBALS['PMD'] + * Retrieves table info and stores it in $GLOBALS['PMD'] * * @return array with table info */ @@ -74,7 +74,7 @@ function PMA_getTablesInfo() } /** - * retrieves table column info + * Retrieves table column info * * @return array table column nfo */ @@ -107,7 +107,7 @@ function PMA_getColumnsInfo() } /** - * returns JavaScript code for initializing vars + * Returns JavaScript code for initializing vars * * @return string JavaScript code */ @@ -186,7 +186,7 @@ function PMA_getPKOrUniqueKeys() } /** - * returns all indices + * Returns all indices * * @param bool $unique_only whether to include only unique ones *