Skip to content

Commit

Permalink
minor - fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylt committed Jul 12, 2024
1 parent ffcf17d commit 2362275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/ceed-basis.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ static int CeedBasisCreateProjectionMatrices(CeedBasis basis_from, CeedBasis bas
CeedCall(CeedBasisGetNumQuadraturePoints(basis_from, &Q_from));
CeedCheck(Q_to == Q_from, ceed, CEED_ERROR_DIMENSION,
"Bases must have compatible quadrature spaces."
" 'basis_from has %" CeedInt_FMT " points and 'basis_to' has %" CeedInt_FMT,
" 'basis_from' has %" CeedInt_FMT " points and 'basis_to' has %" CeedInt_FMT,
Q_from, Q_to);
Q = Q_to;

Expand Down

0 comments on commit 2362275

Please sign in to comment.