summaryrefslogtreecommitdiff
path: root/sql/sql_udf.cc
diff options
context:
space:
mode:
authorunknown <paul@frost.snake.net>2005-03-05 12:42:05 -0600
committerunknown <paul@frost.snake.net>2005-03-05 12:42:05 -0600
commit18f16edff75ed64fb8c726a5f912cbaf8a09fe2c (patch)
treeb0e39fc5378ecb66a5337a53adb9fe1f22250802 /sql/sql_udf.cc
parente75e10ddab05b04580ac420f0a27efc00fd4941e (diff)
downloadmariadb-git-18f16edff75ed64fb8c726a5f912cbaf8a09fe2c.tar.gz
sql_udf.cc:
Comment changes: use standard style; fix grammar. sql/sql_udf.cc: Comment changes: use standard style; fix grammar.
Diffstat (limited to 'sql/sql_udf.cc')
-rw-r--r--sql/sql_udf.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/sql/sql_udf.cc b/sql/sql_udf.cc
index c7c0bf2034f..1d14d037c47 100644
--- a/sql/sql_udf.cc
+++ b/sql/sql_udf.cc
@@ -17,15 +17,15 @@
/* This implements 'user defined functions' */
/*
-** Known bugs:
-**
-** Memory for functions are never freed!
-** Shared libraries are not closed before mysqld exists;
-** - This is because we can't be sure if some threads is using
-** a functions.
-**
-** The buggs only affects applications that creates and frees a lot of
-** dynamic functions, so this shouldn't be a real problem.
+ Known bugs:
+
+ Memory for functions is never freed!
+ Shared libraries are not closed before mysqld exits;
+ - This is because we can't be sure if some threads are using
+ a function.
+
+ The bugs only affect applications that create and free a lot of
+ dynamic functions, so this shouldn't be a real problem.
*/
#ifdef __GNUC__