|
248 | 248 | * |
249 | 249 | * Error handling is simplified by the @sphinxref{LAGRAPH_TRY} / LAGRAPH_CATCH |
250 | 250 | * mechanism described below. For example, assuming the user application |
251 | | - * #defines a single LAGRAPH_CATCH mechanism for all error handling, the |
| 251 | + * defines a single LAGRAPH_CATCH mechanism for all error handling, the |
252 | 252 | * above example would become: |
253 | 253 | * |
254 | 254 | * GrB_Vector level, parent ; |
|
286 | 286 | * The LAGRAPH_CATCH macro takes a single argument, which is the return value |
287 | 287 | * from an LAGraph method. |
288 | 288 | * |
289 | | - * A typical example of a user function that calls LAGraph might #define |
| 289 | + * A typical example of a user function that calls LAGraph might define |
290 | 290 | * LAGRAPH_CATCH as follows. Suppose workvector is a GrB_vector used for |
291 | 291 | * computations internal to the mybfs function, and W is a (double *) space |
292 | 292 | * created by malloc. |
@@ -844,7 +844,7 @@ LAGRAPH_PUBLIC extern GrB_Semiring |
844 | 844 |
|
845 | 845 | /** LAGraph_Version: determines the version of LAGraph. The version number and |
846 | 846 | * date can also be obtained via compile-time constants from LAGraph.h. |
847 | | - * However, it is possible to compile a user application that #includes one |
| 847 | + * However, it is possible to compile a user application that includes one |
848 | 848 | * version of LAGraph.h and then links with another version of the LAGraph |
849 | 849 | * library later on, so the version number and date may differ from the |
850 | 850 | * compile-time constants. |
@@ -2056,7 +2056,7 @@ int LAGraph_Vector_IsEqualOp |
2056 | 2056 | * will affect the pseudo-random numbers generated and results are thus not |
2057 | 2057 | * guaranteed in this case. |
2058 | 2058 | * |
2059 | | - * @param[out,out] State vector to initialize with pseudo-random numbers. |
| 2059 | + * @param[in,out] State vector to initialize with pseudo-random numbers. |
2060 | 2060 | * @param[in] seed scalar seed value. |
2061 | 2061 | * @param[in,out] msg any error messages. |
2062 | 2062 | * |
@@ -2085,7 +2085,7 @@ int LAGraph_Random_Seed // construct a random State vector |
2085 | 2085 | * https://doi.org/10.18637/jss.v008.i14 and |
2086 | 2086 | * https://en.wikipedia.org/wiki/Xorshift . |
2087 | 2087 | * |
2088 | | - * @param[out,out] State vector with random numbers to be advanced. |
| 2088 | + * @param[in,out] State vector with random numbers to be advanced. |
2089 | 2089 | * @param[in,out] msg any error messages. |
2090 | 2090 | * |
2091 | 2091 | * @retval GrB_SUCCESS if successful. |
|
0 commit comments