Skip to content

Commit

Permalink
lint: fix pre-commit errors (#3335)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilason committed Jan 6, 2024
1 parent e4a9cb9 commit 5e86482
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/verify-success.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ jobs:
echo "cancelled=${{ inputs.fail_if_cancelled &&
fromJson(steps.has-result.outputs.cancelled) && 1 || 0
}}" >> "$GITHUB_OUTPUT"
echo "skipped=${{ inputs.fail_if_skipped &&
echo "skipped=${{ inputs.fail_if_skipped &&
fromJson(steps.has-result.outputs.skipped) && 1 || 0
}}" >> "$GITHUB_OUTPUT"
echo "success=${{ inputs.require_success &&
echo "success=${{ inputs.require_success &&
!fromJson(steps.has-result.outputs.success) && 1 || 0
}}" >> "$GITHUB_OUTPUT"
- name: Set messages for each job result type
Expand Down
4 changes: 2 additions & 2 deletions imagery/i.evapo.time/i.evapo.time.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ <h2>NOTES</h2>

<p>
<img src="i_evapo_time.png" alt="Temporal integration from a weather station"><br>
<i>This is an example of a temporal integration from a weather station as done by
<i>This is an example of a temporal integration from a weather station as done by
Chemin and Alexandridis (2004)</i>
<p>

<h2>References</h2>

<p>
Chemin and Alexandridis, 2004. Spatial Resolution Improvement of Seasonal
Evapotranspiration for Irrigated Rice, Zhanghe Irrigation District, Hubei Province, China.
Evapotranspiration for Irrigated Rice, Zhanghe Irrigation District, Hubei Province, China.
Asian Journal of Geoinformatics, Vol. 5, No. 1, September 2004
(<a href="https://ikee.lib.auth.gr/record/270217/files/Chemin-Alexandridis.pdf">PDF</a>)

Expand Down
8 changes: 5 additions & 3 deletions lib/cdhc/doc/chd_statlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
Released in 1994 by Paul Johnson.

Retrieved from the Internet Archive for
[http://sunsite.univie.ac.at/statlib/general/cdh](https://web.archive.org/web/20001006232323/http://sunsite.univie.ac.at/statlib/general/cdh) -- 2000-10-06

[http://sunsite.univie.ac.at/statlib/general/cdh](https://web.archive.org/web/20001006232323/http://sunsite.univie.ac.at/statlib/general/cdh)
-- 2000-10-06

<!-- markdownlint-disable -->
```txt
TESTS OF COMPOSITE DISTRIBUTIONAL HYPOTHESES FOR
THE ANALYSIS OF BIOLOGICAL & ENVIRONMENTAL DATA
Expand Down Expand Up @@ -1974,4 +1975,5 @@ C
xinormal = px
RETURN
END
```
```
<!-- markdownlint-enable -->
2 changes: 1 addition & 1 deletion raster/r.walk/r.walk.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h2>NOTES</h2>

<p>The <b>friction</b> cost parameter represents a time penalty in seconds
of additional walking time to cross 1 meter distance.
Friction cost can be any floating point value &ge; 0.
Friction cost can be any floating point value &ge; 0.
A friction map is a required parameter; if no friction costs are desired,
a friction map should be a raster in which all cells have a value of 0.
<p>The <b>lambda</b> parameter is a dimensionless scaling factor of the friction cost:
Expand Down

0 comments on commit 5e86482

Please sign in to comment.