Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
HansOlsson committed Jan 31, 2022
1 parent ef06462 commit fdf297e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Modelica/Resources/C-Sources/ModelicaStandardTables.c
Expand Up @@ -505,10 +505,11 @@ static size_t findRowIndex2(const double* table, size_t nRow, size_t nCol,

static size_t findColIndex(_In_ const double* table, size_t nCol, size_t last,
double x) MODELICA_NONNULLATTR;
/* Same as findRowIndex but works on rows */
/* Same as findRowIndex but works on columns */

static size_t findColIndex2(_In_ const double* table, size_t nCol, size_t last,
double x, double dx) MODELICA_NONNULLATTR;
/* Same as findRowIndex2 but works on rows */
/* Same as findRowIndex2 but works on columns */

static int findLess(double x, double dx, double val) {
return x<val || (x==val && dx<0);
Expand Down

0 comments on commit fdf297e

Please sign in to comment.