Skip to content

Commit 863e280

Browse files
committed
Fix typos
1 parent addd2c3 commit 863e280

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In addition, two Windows one-click-build scripts are included in the `win_build`
2222

2323
These two scripts build EPANET binaries for both the 32 and 64 bit Windows platforms, placing them in the `win_build\32bit` and `win_build\64bit` directories, respectively.
2424

25-
A tutorial on [building OWA EPANET from source on Windows](tools/BuildAndTest.md), including running unit tests and performing regression testing, is also avaiable.
25+
A tutorial on [building OWA EPANET from source on Windows](tools/BuildAndTest.md), including running unit tests and performing regression testing, is also available.
2626

2727
## Alternative build with Conan
2828
Conan is an increasingly popular C/C++ package management suite. To build EPANET using Conan, use the following commands as a starting point:

doc/toolkit-input.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ Each rule is a series of statements of the form:
721721
where:
722722
<table style = "border: 0px solid black">
723723
<tr> <td><I>ruleID</I></td> <td> = </td> <td> &nbsp;an ID label assigned to the rule</td> </tr>
724-
<tr> <td><I>conditon_n</I></td> <td> = </td> <td> &nbsp;a @subpage ConditionClauses "condition clause"</td> </tr>
724+
<tr> <td><I>condition_n</I></td> <td> = </td> <td> &nbsp;a @subpage ConditionClauses "condition clause"</td> </tr>
725725
<tr> <td><I>action_n</I></td> <td> = </td> <td> &nbsp;an @subpage ActionClauses "action clause"</td> </tr>
726726
<tr> <td><B>PRIORITY</B></td> <td> = </td> <td> &nbsp;a priority value (e.g., a number from 1 to 5)</td> </tr>
727727
</table>

doc/toolkit-topics.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ These are the toolkit's enumerated types whose members are used as function argu
372372
| 241 | Function call refers to nonexistent control |
373373
| 250 | Function call contains invalid format (e.g. too long an ID name) |
374374
| 251 | Function call contains invalid parameter code |
375-
| 252 | Function call rferes to an invalid ID name |
375+
| 252 | Function call refers to an invalid ID name |
376376
| 253 | Function call refers to nonexistent demand category |
377377
| 254 | Function call refers to node with no coordinates |
378378
| 255 | Function call refers to link with no vertices |

doc/toolkit-usage.dox

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ EN_addlink(ph, "P1", EN_PIPE, "J1", "J2", &index);
7070
// additional function calls to complete building the network
7171
\endcode
7272

73-
See the @ref Example2 for a more complete example. The labels used to name objects cannot contain spaces, semi-colons, or double quotes nor exceed @ref EN_SizeLimits "EN_MAXID" characters in length. While adding objects their properties can be set as described in the next section. Attemtping to change a network's structure by adding or deleting nodes and links while the Toolkit's hydraulic or water quality solvers are open will result in an error condition.
73+
See the @ref Example2 for a more complete example. The labels used to name objects cannot contain spaces, semi-colons, or double quotes nor exceed @ref EN_SizeLimits "EN_MAXID" characters in length. While adding objects their properties can be set as described in the next section. Attempting to change a network's structure by adding or deleting nodes and links while the Toolkit's hydraulic or water quality solvers are open will result in an error condition.
7474

7575
@section Properties Setting Object Properties
7676

@@ -186,7 +186,7 @@ The @ref EN_getnodevalue and @ref EN_getlinkvalue functions can also be used to
186186
|\b EN_TANKVOLUME (tank water volume) |\b EN_SETTING (pump speed or valve setting)|
187187
|\b EN_QUALITY (water quality) |\b EN_ENERGY (pump energy usage) |
188188
|\b EN_SOURCEMASS (source mass inflow)|\b EN_PUMP_EFFIC (pump efficiency) |
189-
| |\b EN_LINK_LEAKAGE (pipe leakage flow rate |
189+
| |\b EN_LINK_LEAKAGE (pipe leakage flow rate)|
190190

191191
In addition, the following quantities related to a node's outflow can be retrieved:
192192
-# EN_FULLDEMAND (consumer demand requested)

src/hydraul.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ int nexthyd(Project *pr, long *tstep)
244244
** Output: tstep = pointer to time step (in seconds)
245245
** Returns: error code
246246
** Purpose: finds length of next time step & updates tank
247-
** levels and rule-based contol actions
247+
** levels and rule-based control actions
248248
**--------------------------------------------------------------
249249
*/
250250
{

0 commit comments

Comments
 (0)