aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/complex_numbers.clj
diff options
context:
space:
mode:
authorKonrad Hinsen <konrad.hinsen@laposte.net>2009-05-03 15:45:02 +0000
committerKonrad Hinsen <konrad.hinsen@laposte.net>2009-05-03 15:45:02 +0000
commitbdc813a0d39cb3c6184c4e123d847458e9c77711 (patch)
treebfd2af2560617b72f4b8f827b5e7467770637230 /src/clojure/contrib/complex_numbers.clj
parent47a2f69414f0c3ff90fb2fad4930d9af3d491d23 (diff)
Namespace documentation for autodoc
Diffstat (limited to 'src/clojure/contrib/complex_numbers.clj')
-rw-r--r--src/clojure/contrib/complex_numbers.clj12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/clojure/contrib/complex_numbers.clj b/src/clojure/contrib/complex_numbers.clj
index 942051da..25e5dc7c 100644
--- a/src/clojure/contrib/complex_numbers.clj
+++ b/src/clojure/contrib/complex_numbers.clj
@@ -1,7 +1,7 @@
;; Complex numbers
;; by Konrad Hinsen
-;; last updated April 2, 2009
+;; last updated May 3, 2009
;; Copyright (c) Konrad Hinsen, 2009. All rights reserved. The use
;; and distribution terms for this software are covered by the Eclipse
@@ -11,10 +11,12 @@
;; agreeing to be bound by the terms of this license. You must not
;; remove this notice, or any other, from this software.
-(ns clojure.contrib.complex-numbers
- "Complex numbers
-
- NOTE: This library is in evolution. It may change with future releases."
+(ns
+ #^{:author "Konrad Hinsen"
+ :doc "Complex numbers
+ NOTE: This library is in evolution.
+ It may change with future releases."}
+ clojure.contrib.complex-numbers
(:use [clojure.contrib.types :only (deftype)]
[clojure.contrib.generic :only (root-type)])
(:require [clojure.contrib.generic.arithmetic :as ga]