diff --git a/lib/master.pike.in b/lib/master.pike.in index d376f66e6dc44dcc4587c0f67e6b0ae3271f7a19..693c2bf18d22f8eba4c90583d4462c299d67430e 100644 --- a/lib/master.pike.in +++ b/lib/master.pike.in @@ -1,6 +1,6 @@ /* -*- Pike -*- * - * $Id: master.pike.in,v 1.172 2001/10/26 15:21:09 grubba Exp $ + * $Id: master.pike.in,v 1.173 2001/10/28 17:54:43 nilsson Exp $ * * Master-file for Pike. * @@ -199,7 +199,7 @@ int compat_major=-1; int compat_minor=-1; //! @appears compile_string -//! Compile the Pike code in the string @[data] into a program. +//! Compile the Pike code in the string @[source] into a program. //! If @[filename] is not specified, it will default to @tt{"-"@}. //! //! Functionally equal to @code{@[compile](@[cpp](@[source], @[filename]))@}. diff --git a/lib/modules/ADT.pmod/Table.pmod b/lib/modules/ADT.pmod/Table.pmod index 4bae23b6e35b1c23d7828c55117a96095c501a31..2c60675b19bcf788e8593c42a595305d85ecfebb 100644 --- a/lib/modules/ADT.pmod/Table.pmod +++ b/lib/modules/ADT.pmod/Table.pmod @@ -1,5 +1,5 @@ // Table.pmod by Fredrik Noring, 1998 -// $Id: Table.pmod,v 1.21 2001/05/10 13:09:52 grubba Exp $ +// $Id: Table.pmod,v 1.22 2001/10/28 17:56:38 nilsson Exp $ #pike __REAL_VERSION__ #define TABLE_ERR(msg) throw(({ "(Table) "+msg+"\n", backtrace() })) @@ -206,7 +206,7 @@ class table { return copy(t, fields, types); } - //! This method calls the function @[f()] for each column each time a + //! This method calls the function @[f] for each column each time a //! non uniqe row will be joined. The table will be grouped by the //! columns not listed. The result will be returned as a new table object. object group(mapping(int|string:function)|function f, mixed ... args) @@ -258,7 +258,7 @@ class table { return group(m); } - //! This method calls the function @[f()] for all rows in the table. + //! This method calls the function @[f] for all rows in the table. //! The value returned will replace the values in the columns given //! as argument to map. If the function returns an array, several //! columns will be replaced. Otherwise the first column will be diff --git a/lib/modules/Array.pmod b/lib/modules/Array.pmod index 9da05ff39a7a0c2340f5bac3de1131d7c1812022..ea42138873ef9fc13b8311204acd19699e6ca871 100644 --- a/lib/modules/Array.pmod +++ b/lib/modules/Array.pmod @@ -26,7 +26,7 @@ constant enumerate = predef::enumerate; //! only one element, that element will be returned. //! //! @seealso -//! @[Array.rreduce()] +//! @[rreduce()] //! mixed reduce(function fun, array arr, mixed|void zero) { @@ -44,7 +44,7 @@ mixed reduce(function fun, array arr, mixed|void zero) //! only one element, that element will be returned. //! //! @seealso -//! @[Array.reduce()] +//! @[reduce()] //! mixed rreduce(function fun, array arr, mixed|void zero) { @@ -58,7 +58,7 @@ mixed rreduce(function fun, array arr, mixed|void zero) //! @[shuffle()] gives back the same elements, but in random order. //! //! @seealso -//! @[Array.permute()] +//! @[permute()] //! array shuffle(array arr) { @@ -81,7 +81,7 @@ array shuffle(array arr) //! If no call returns true, -1 is returned. //! //! @seealso -//! @[Array.sum_arrays()], @[map()] +//! @[sum()], @[map()] //! int search_array(array arr, mixed fun, mixed ... args) { @@ -598,7 +598,6 @@ array arrayify(void|array|mixed x) return ({ x }); } - //! Sort with care of numerical sort for OID values: //! "1.2.1" before "1.11.1" int oid_sort_func(string a0,string b0) diff --git a/lib/modules/Thread.pmod b/lib/modules/Thread.pmod index f95cd36d8c3ee505cd9f0af9461d5800a9727f65..ede969b36d429c78c4e4b88d2b1888fdecf09d12 100644 --- a/lib/modules/Thread.pmod +++ b/lib/modules/Thread.pmod @@ -29,7 +29,7 @@ optional constant all_threads = predef::all_threads; -//! @[Thread.Fifo] implements a fixed length first-in, first-out queue. +//! @[Fifo] implements a fixed length first-in, first-out queue. //! A fifo is a queue of values and is often used as a stream of data //! between two threads. //! @@ -37,7 +37,7 @@ optional constant all_threads = predef::all_threads; //! Fifos are only available on systems with threads support. //! //! @seealso -//! @[Thread.Queue] +//! @[Queue] //! optional class Fifo { inherit Condition : r_cond; @@ -51,7 +51,7 @@ optional class Fifo { //! This function returns the number of elements currently in the fifo. //! //! @seealso - //! @[read()], @[write()] + //! @[read()], @[write()] //! int size() { return num; } @@ -61,7 +61,7 @@ optional class Fifo { //! thread writes a value to the fifo. //! //! @seealso - //! @[write()], @[read_array()] + //! @[write()], @[read_array()] //! mixed read() { @@ -89,7 +89,7 @@ optional class Fifo { //! some other thread writes a value to the fifo. //! //! @seealso - //! @[write()], @[read()] + //! @[write()], @[read()] //! array read_array() { @@ -121,7 +121,7 @@ optional class Fifo { //! available. //! //! @seealso - //! @[read()] + //! @[read()] //! void write(mixed value) { @@ -164,8 +164,8 @@ optional class Fifo { } }; -//! @[Thread.Queue] implements a queue, or a pipeline. The main difference -//! between @[Thread.Queue] and @[Thread.Fifo] is that @[Thread.Queue] +//! @[Queue] implements a queue, or a pipeline. The main difference +//! between @[Queue] and @[Fifo] is that @[Queue] //! will never block in write(), only allocate more memory. //! //! @note @@ -173,7 +173,7 @@ optional class Fifo { //! thread support. //! //! @seealso -//! @[Thread.Fifo] +//! @[Fifo] //! optional class Queue { inherit Condition : r_cond; @@ -185,7 +185,7 @@ optional class Queue { //! This function returns the number of elements currently in the queue. //! //! @seealso - //! @[read()], @[write()] + //! @[read()], @[write()] //! int size() { return w_ptr - r_ptr; } @@ -195,7 +195,7 @@ optional class Queue { //! thread writes a value to the queue. //! //! @seealso - //! @[write()] + //! @[write()] //! mixed read() { @@ -213,7 +213,7 @@ optional class Queue { //! room for it. //! //! @seealso - //! @[read()] + //! @[read()] //! void write(mixed value) { diff --git a/src/modules/Yp/module.pmod.in b/src/modules/Yp/module.pmod.in index 61fda93a5cab92f7e349e067ce15147ceeeebff9..e6fe779f8519a8445c77c5c06056c1d9ac6b5de9 100644 --- a/src/modules/Yp/module.pmod.in +++ b/src/modules/Yp/module.pmod.in @@ -1,5 +1,5 @@ /* - * $Id: module.pmod.in,v 1.14 2001/04/26 14:13:09 grubba Exp $ + * $Id: module.pmod.in,v 1.15 2001/10/28 18:04:47 nilsson Exp $ * * YP (NIS) Functionality for Pike * @@ -88,7 +88,7 @@ class Map { //! Call a function for each entry in the map. //! - //! For each entry in the map, call the function @[fun()]. + //! For each entry in the map, call the function @[fun]. //! //! The function will be called like //! @tt{void fun(string key, string value)@}.