svn: /web/doc-editor/trunk/php/ LogManager.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Sat, 28 Nov 2009 13:21:13 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=291377
Log:
clean up method's comment
Changed paths:
U web/doc-editor/trunk/php/LogManager.php
Modified: web/doc-editor/trunk/php/LogManager.php
===================================================================
--- web/doc-editor/trunk/php/LogManager.php 2009-11-28 10:59:56 UTC (rev 291376)
+++ web/doc-editor/trunk/php/LogManager.php 2009-11-28 13:21:13 UTC (rev 291377)
@@ -71,8 +71,8 @@
/**
* Save an existing log message into DB.
*
- * @param $messID The ID of the log message.
- * @param $mess The message.
+ * @param $logID The ID of the log message.
+ * @param $log The message.
*/
public function updateCommitLog($logID, $log)
{
@@ -86,7 +86,7 @@
/**
* Delete a log message into DB.
*
- * @param $messID The ID of the log message.
+ * @param $logID The ID of the log message.
*/
public function delCommitLog($logID)
{
@@ -114,7 +114,7 @@
* Get the content of a log file.
*
* @param $file The name of the file.
- * @return $content The content.
+ * @return The content of the log file.
*/
public function readOutputLog($file)
{