possessive vs contraction
This commit is contained in:
@@ -27,7 +27,7 @@ Before using the OWA-EPANET Toolkit one should be familiar with the way that EPA
|
||||
|
||||
More detailed information can be obtained from reading the <a href="https://nepis.epa.gov/Adobe/PDF/P1007WWU.pdf">EPANET 2 Users Manual</a>.
|
||||
|
||||
__Note:__ <a href="https://github.com/OpenWaterAnalytics">OWA (Open Water Analytics)</a> exists on GitHub as an open community for the exchange of information and ideas related to computing in the water & wastewater industries. It's activities and code projects are neither affiliated with nor endorsed by the USEPA.
|
||||
__Note:__ <a href="https://github.com/OpenWaterAnalytics">OWA (Open Water Analytics)</a> exists on GitHub as an open community for the exchange of information and ideas related to computing in the water & wastewater industries. Its activities and code projects are neither affiliated with nor endorsed by the USEPA.
|
||||
*/
|
||||
|
||||
/**
|
||||
|
||||
@@ -771,7 +771,7 @@ typedef struct Project *EN_Project;
|
||||
@param[out] index the index of the newly added node
|
||||
@return an error code.
|
||||
|
||||
When a new node is created all of it's properties (see @ref EN_NodeProperty) are set to 0.
|
||||
When a new node is created all of its properties (see @ref EN_NodeProperty) are set to 0.
|
||||
*/
|
||||
int DLLEXPORT EN_addnode(EN_Project ph, char *id, int nodeType, int *index);
|
||||
|
||||
|
||||
@@ -1087,7 +1087,7 @@ int onactionlist(Project *pr, int i, Saction *a)
|
||||
// Link appears in list
|
||||
if (link == a1->link)
|
||||
{
|
||||
// Replace it's action with 'a' if rule i has higher priority
|
||||
// Replace its action with 'a' if rule i has higher priority
|
||||
if (net->Rule[i].priority > net->Rule[i1].priority)
|
||||
{
|
||||
actionItem->action = a;
|
||||
@@ -1266,7 +1266,7 @@ void writepremise(Spremise *p, FILE *f, Network *net)
|
||||
strcpy(s_id, "");
|
||||
}
|
||||
|
||||
// If premise has no value field, use it's status field as a value
|
||||
// If premise has no value field, use its status field as a value
|
||||
if (p->value == MISSING) strcpy(s_value, Value[p->status]);
|
||||
|
||||
// Otherwise get text of premise's value field
|
||||
|
||||
Reference in New Issue
Block a user