diff --git a/bmipy/bmi.py b/bmipy/bmi.py index c4841d6..81ead40 100644 --- a/bmipy/bmi.py +++ b/bmipy/bmi.py @@ -304,7 +304,7 @@ def get_time_units(self) -> str: Returns ------- - float + str The model time unit; e.g., `days` or `s`. Notes @@ -380,7 +380,7 @@ def get_value_at_indices( An input or output variable name, a CSDMS Standard Name. dest : ndarray A numpy array into which to place the values. - indices : array_like + inds : array_like The indices into the variable array. Returns @@ -401,7 +401,7 @@ def set_value(self, name: str, values: np.ndarray) -> None: Parameters ---------- - var_name : str + name : str An input or output variable name, a CSDMS Standard Name. src : array_like The new value for the specified variable. @@ -416,9 +416,9 @@ def set_value_at_indices( Parameters ---------- - var_name : str + name : str An input or output variable name, a CSDMS Standard Name. - indices : array_like + inds : array_like The indices into the variable array. src : array_like The new value for the specified variable.