Skip to content

Commit

Permalink
grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
Avraham Adler committed Mar 4, 2024
1 parent ed63d7d commit 3d20f5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
\itemize{
\item If an explicitly passed \code{conviter} is larger than
\code{miniter}, then \code{miniter} is set to \code{conviter}.
\item Made documentation more consistent.
\item Documentation made more consistent.
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/Chebyshev.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
// SPDX-License-Identifier: MPL-2.0+

#ifndef USE_FC_LEN_T
# define USE_FC_LEN_T
#define USE_FC_LEN_T
#endif
#include <Rconfig.h>
#include <R_ext/BLAS.h>
#ifndef FCONE
# define FCONE
#define FCONE
#endif

#include <Rmath.h>
Expand All @@ -16,7 +16,7 @@

// Function to create a matrix of Chebyshev polynomials of order k where k goes
// from 0 to (n-1) for each one of the m entries in the vector x. This makes
// chebCalc faster since it's called directly from C instead of Calling chebMat
// chebCalc faster since it's called directly from C instead of calling chebMat
// inside chebCalc as in earlier development versions. It also maintains the
// single-location of the Chebyshev calculations for programming safety. This
// version is faster than checking for fabs(x) <= 1 and then a ternary operator
Expand Down

0 comments on commit 3d20f5a

Please sign in to comment.