From 56c569b56f48a2d87959a37ad32533b985f5719e Mon Sep 17 00:00:00 2001 From: Luke Butler Date: Thu, 16 Mar 2023 19:53:25 -0400 Subject: [PATCH] Update epanet2_enums.h Fixed option and spacing --- include/epanet2_enums.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/epanet2_enums.h b/include/epanet2_enums.h index 4263eb6..79039ef 100644 --- a/include/epanet2_enums.h +++ b/include/epanet2_enums.h @@ -296,11 +296,11 @@ typedef enum { The available choices for pressure units for the \b EN_PRESS_UNITS option in @ref EN_getoption and @ref EN_setoption. For networks using US Customary units for flow ( \b EN_CFS through \b EN_AFD ) pressure units can only be set as PSI. For network using metric units, you can -select either \b EN_MTR or \b EN_KPA. +select either \b EN_METERS or \b EN_KPA. */ typedef enum { - EN_PSI = 0, //!< Pounds per square inch - EN_KPA = 1, //!< Kilopascals + EN_PSI = 0, //!< Pounds per square inch + EN_KPA = 1, //!< Kilopascals EN_METERS = 2 //!< Meters } EN_PressUnits;