Skip to content

Commit 9621cf4

Browse files
committed
doc - fix missing ` in various files
1 parent 0b892ed commit 9621cf4

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

interface/ceed-config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const char *CeedBuildConfiguration = CEED_BUILD_CONFIGURATION;
2222
@param[out] git_version A static string containing the Git commit description.
2323
2424
If `git describe --always --dirty` fails, the string `"unknown"` will be provided.
25-
This could occur if Git is not installed or if libCEED is not being built from a repository, for example.`
25+
This could occur if Git is not installed or if libCEED is not being built from a repository, for example.
2626
2727
@ref Developer
2828

interface/ceed-preconditioning.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ static inline int CeedOperatorLinearAssembleAddDiagonalComposite(CeedOperator op
438438
}
439439

440440
/**
441-
@brief Build nonzero pattern for non-composite CeedOperator`.
441+
@brief Build nonzero pattern for non-composite `CeedOperator`.
442442
443443
Users should generally use @ref CeedOperatorLinearAssembleSymbolic().
444444
@@ -1611,7 +1611,7 @@ int CeedOperatorGetOperatorAssemblyData(CeedOperator op, CeedOperatorAssemblyDat
16111611
16121612
The `CeedOperatorAssemblyData` holds an array with references to every active `CeedBasis` used in the `CeedOperator`.
16131613
An array with references to the corresponding active `CeedElemRestriction` is also stored.
1614-
For each active `CeedBasis, the `CeedOperatorAssemblyData` holds an array of all input and output @ref CeedEvalMode for this `CeedBasis`.
1614+
For each active `CeedBasis`, the `CeedOperatorAssemblyData` holds an array of all input and output @ref CeedEvalMode for this `CeedBasis`.
16151615
The `CeedOperatorAssemblyData` holds an array of offsets for indexing into the assembled `CeedQFunction` arrays to the row representing each @ref CeedEvalMode.
16161616
The number of input columns across all active bases for the assembled `CeedQFunction` is also stored.
16171617
Lastly, the `CeedOperatorAssembly` data holds assembled matrices representing the full action of the `CeedBasis` for all @ref CeedEvalMode.

interface/ceed-qfunction.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ int CeedQFunctionCreateInteriorByName(Ceed ceed, const char *name, CeedQFunction
756756
@brief Create an identity `CeedQFunction`.
757757
758758
Inputs are written into outputs in the order given.
759-
This is useful for `CeedOperator that can be represented with only the action of a `CeedElemRestriction` and `CeedBasis`, such as restriction and prolongation operators for p-multigrid.
759+
This is useful for `CeedOperator` that can be represented with only the action of a `CeedElemRestriction` and `CeedBasis`, such as restriction and prolongation operators for p-multigrid.
760760
Backends may optimize `CeedOperator` with this `CeedQFunction` to avoid the copy of input data to output fields by using the same memory location for both.
761761
762762
@param[in] ceed `Ceed` object used to create the `CeedQFunction`

interface/ceed-vector.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ int CeedVectorScale(CeedVector x, CeedScalar alpha) {
761761
762762
@param[in,out] y target `CeedVector` for sum
763763
@param[in] alpha scaling factor
764-
@param[in] x second `CeedVector`, must be different than ``y`
764+
@param[in] x second `CeedVector`, must be different than `y`
765765
766766
@return An error code: 0 - success, otherwise - failure
767767

0 commit comments

Comments
 (0)