diff --git a/lib/modules/Sql.pmod/mysql.pike b/lib/modules/Sql.pmod/mysql.pike
index a62f6605d8e7a3a81b2ae092ef9c3c6a09bcc1a2..9b29dff0927a41f7c2a506e331fb8bce8d5a21d5 100644
--- a/lib/modules/Sql.pmod/mysql.pike
+++ b/lib/modules/Sql.pmod/mysql.pike
@@ -1,5 +1,5 @@
 /*
- * $Id: mysql.pike,v 1.44 2009/11/10 12:55:57 grubba Exp $
+ * $Id: mysql.pike,v 1.45 2009/11/11 13:38:19 grubba Exp $
  *
  * Glue for the Mysql-module
  */
@@ -710,6 +710,9 @@ Mysql.mysql_result big_query (string query,
 //!   A @[Mysql.mysql_result] object is returned if the query is of a
 //!   kind that returns a result. Zero is returned otherwise.
 //!
+//!   The individual fields are returned as strings except for @tt{NULL@},
+//!   which is returned as @[UNDEFINED].
+//!
 //! @seealso
 //!   @[Sql.big_query()], @[big_typed_query()], @[streaming_query()]
 {
@@ -744,8 +747,8 @@ Mysql.mysql_result big_typed_query (string query,
 //! The types of the result fields depend on the corresponding SQL types.
 //! They are mapped as follows:
 //! @mixed
-//!   @type zero
-//!     The @tt{NULL@} value is returned as @[UNDEFINED].
+//!   @type Sql.Null
+//!     The @tt{NULL@} value is returned as @[Sql.NULL].
 //!   @type int
 //!     Integer values are returned as @tt{int@} values.
 //!   @type float