Skip to content

Commit b12cc31

Browse files
committed
module documentation reference fixes
darcs-hash:20081102045614-56c21-f97036bf9f568e6b19db42c49633d4ca04e723fb
1 parent 5ce2c0d commit b12cc31

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Foreign/Matlab/Array/MArray.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{-|
2-
Safe MArray interface to "Matlab.Array".
2+
Safe MArray interface to "Foreign.Matlab.Array".
33
4-
An instance of 'Data.Array.MArray.MArray' for 'MXArray'. Although array access can be done through this instance, arrays themselves must be created using 'mxMArray' along with one of the "Matlab.Array" create functions.
4+
An instance of 'Data.Array.MArray.MArray' for 'MXArray'. Although array access can be done through this instance, arrays themselves must be created using 'mxMArray' along with one of the "Foreign.Matlab.Array" create functions.
55
-}
66
module Foreign.Matlab.Array.MArray (
77
MMXArray, mxMArray, unMmxArray

Foreign/Matlab/Engine.hsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Interface to a Matlab engine.
33
This works by spawning a separate matlab process and interchanging data in MAT format.
44
5-
Note that you cannot use "Matlab.Engine" and "Matlab.Runtime" in the same program.
5+
Note that you cannot use "Foreign.Matlab.Engine" and "Foreign.Matlab.Runtime" in the same program.
66
This seems to be a Matlab limitation.
77
-}
88
module Foreign.Matlab.Engine (

Foreign/Matlab/Internal.hsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ isMNull (MXArray a) = nullPtr == a
174174

175175
-- |Tag for a generic array
176176
data MAny
177-
-- |A generic, untyped (void) array, which must be cast (using 'Matlab.Array.castMXArray')
177+
-- |A generic, untyped (void) array, which must be cast (using 'Foreign.Matlab.Array.castMXArray')
178178
type MAnyArray = MXArray MAny
179179

180180
-- |Tag for a NULL array

Foreign/Matlab/Runtime.hsc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This uses a Matlab shared library which has been built with \"mcc -l\", and only functions in this library may be called.
44
Multiple libraries may be loaded simultaneously.
55
6-
Note that you cannot use "Matlab.Runtime" and "Matlab.Engine" in the same program.
6+
Note that you cannot use "Foreign.Matlab.Runtime" and "Foreign.Matlab.Engine" in the same program.
77
This seems to be a Matlab limitation.
88
-}
99
module Foreign.Matlab.Runtime (
@@ -131,7 +131,7 @@ mLibraryCall ml f arg no = do
131131

132132
foreign import ccall "dynamic" mkFeval :: FunPtr a -> CString -> MLXFun
133133

134-
-- |Internal use only. See "Matlab.Runtime.Generic"
134+
-- |Internal use only. See "Foreign.Matlab.Runtime.Generic"
135135
mlGenericFeval :: MLibrary -> IO (CString -> MFun)
136136
mlGenericFeval MLibrary{ mlName = "hsmatlab", mlDL = dl } = do
137137
fe <- mkFeval =.< dlsym dl "mlHsFeval"

Foreign/Matlab/Runtime/Generic.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{-|
22
Generic runtime library interface.
3-
This uses a Matlab library built along with HSMatlab to provide runtime access to general Matlab functionality throuh "Matlab.Runtime".
4-
Any builtin Matlab function can be called through this interface, but other M-file functions may not -- these need to be put into a library or used through "Matlab.Engine" instead.
3+
This uses a Matlab library built along with HSMatlab to provide runtime access to general Matlab functionality throuh "Foreign.Matlab.Runtime".
4+
Any builtin Matlab function can be called through this interface, but other M-file functions may not -- these need to be put into a library or used through "Foreign.Matlab.Engine" instead.
55
-}
66
module Foreign.Matlab.Runtime.Generic (
77
MLGeneric,

0 commit comments

Comments
 (0)