Skip to content

Commit 889136d

Browse files
committedFeb 2, 2025
Fix typos
1 parent 576ce06 commit 889136d

File tree

96 files changed

+154
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+154
-154
lines changed
 

‎doc/Building.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Building the swat model is supported for various platforms and compilers as desc
9797

9898
### Installing
9999

100-
Finally, you can install the `swatplus` executable by using the `--install` CMake option. Specify the installation directory that will receive a copy of the SWAT+ executable, generated in `build`. The `--prefix` option takes as an argument the base of the binary directory. Not using `--prefix` will copy `swatplus` into the system default binary directory. You don't have to use this step if you want to mange moving the swat executable yourself.
100+
Finally, you can install the `swatplus` executable by using the `--install` CMake option. Specify the installation directory that will receive a copy of the SWAT+ executable, generated in `build`. The `--prefix` option takes as an argument the base of the binary directory. Not using `--prefix` will copy `swatplus` into the system default binary directory. You don't have to use this step if you want to manage moving the swat executable yourself.
101101

102102
```bash
103103
$ cmake --install build --prefix ~/bin

‎doc/coding_conventions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Below are some references for more background information on this topic.
4646
* Program against a standard (e.g., ANSI C, C++, Java, FORTRAN 77/90/95) -
4747
* Make sure your code compiles under different compilers and platforms.
4848
* Use preprocessor directives for adaptation to different architectures/compilers/OS.
49-
* Make I/O specific components seperate from computatonal components.
49+
* Make I/O specific components separate from computatonal components.
5050
* Avoid static allocation of data (compile time allocation).
5151
* Be most specific with your data types.
5252
* Avoid using custom data types for argument types.-->
@@ -169,7 +169,7 @@ Below are some references for more background information on this topic.
169169

170170
### Recommended
171171

172-
* Use of arrays is encouraged as well as intrinsinc functions to manipulate them.
172+
* Use of arrays is encouraged as well as intrinsic functions to manipulate them.
173173
* Use of assumed shapes is fine in passing vectors/arrays to functions/arrays.
174174

175175
### Encouraged
@@ -282,7 +282,7 @@ Below are some references for more background information on this topic.
282282
* DO non-integer Control
283283
* Hollerith Constants
284284
* ``PAUSE``
285-
* multple ``RETURN``
285+
* multiple ``RETURN``
286286
* Alternate RETURN
287287

288288
### Recommended

0 commit comments

Comments
 (0)
Please sign in to comment.