Skip to content

Commit

Permalink
Merge pull request #1635 from CEED/jeremy/typo
Browse files Browse the repository at this point in the history
minor - fix typo
  • Loading branch information
jeremylt authored Jul 12, 2024
2 parents ffcf17d + 2362275 commit c5f068b
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 c5f068b

Please sign in to comment.