Fix minor docs typo in Matlab enthalpy_mole

This commit is contained in:
Bryan W. Weber 2016-10-04 11:34:04 -04:00 committed by GitHub
parent 8a86fed0ca
commit 9bba45b01e

View file

@ -1,6 +1,6 @@
function v = enthalpy_mole(a)
function v = enthalpy_mole(tp)
% ENTHALPY_MOLE Get the mole specific enthalpy.
% v = enthalpy_mole(a)
% v = enthalpy_mole(tp)
% :param tp:
% Instance of class :mat:func:`ThermoPhase` (or another
% object that derives from ThermoPhase)
@ -8,4 +8,4 @@ function v = enthalpy_mole(a)
% Vector of molar specific enthalpies of the species. Units: J/kmol
%
v = thermo_get(a.tp_id, 2);
v = thermo_get(tp.tp_id, 2);