From c00a38dc6e059421c3204efce9c20ab964a41376 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Thu, 10 May 2001 14:39:25 +0200
Subject: [PATCH] Autodoc mk II markup fix.

Rev: lib/modules/Function.pmod:1.6
---
 lib/modules/Function.pmod | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lib/modules/Function.pmod b/lib/modules/Function.pmod
index 0195fc7f0e..f7c9c4ab39 100644
--- a/lib/modules/Function.pmod
+++ b/lib/modules/Function.pmod
@@ -9,6 +9,15 @@ constant defined = __builtin.function_defined;
 //! with @ref{sscanf@} with @tt{"...%{...%}..."@} scan strings (which indeed
 //! was what it was invented for in the first place).
 //!
+//! @param args
+//!  The first arguments the function @tt{f@} expects
+//! @param f
+//!  The function to apply the arguments on
+//! @param extra
+//!  Optional extra arguments to send to @tt{f@}
+//! @returns
+//!  Whatever the supplied function @tt{f@} returns
+//!
 //! @example
 //!   @code{
 //!   class Product(string name, string version)
@@ -26,15 +35,6 @@ constant defined = __builtin.function_defined;
 //!	 Product(whitefish/0.1)
 //!   })
 //!   @}
-//!
-//! @param args
-//!  the first arguments the function @tt{f@} expects
-//! @param f
-//!  the function to apply the arguments on
-//! @param extra
-//!  optional extra arguments to send to @tt{f@}
-//! @returns
-//!  whatever the supplied function @tt{f@} returns
 mixed splice_call(array args, function f, mixed|void ... extra)
 {
   return f(@args, @extra);
-- 
GitLab