jobs:
release:
- name: Publish to Github Relases
+ name: Publish to Github Releases
outputs:
rc: ${{ steps.check-tag.outputs.rc }}
### Bug Fixes
-- File path contains special charactors ([#114](https://github.com/sigoden/dufs/issues/114))
+- File path contains special characters ([#114](https://github.com/sigoden/dufs/issues/114))
### Features
### Bug Fixes
-- Unexpect stack overflow when searching a lot ([#87](https://github.com/sigoden/dufs/issues/87))
+- Unexpected stack overflow when searching a lot ([#87](https://github.com/sigoden/dufs/issues/87))
### Features
### Refactor
-- Trival changes ([#41](https://github.com/sigoden/dufs/issues/41))
+- Trivial changes ([#41](https://github.com/sigoden/dufs/issues/41))
## [0.16.0] - 2022-06-12
return `${padZero(h, 2)}:${padZero(m, 2)}:${padZero(s, 2)}`;
}
-function formatPercent(precent) {
- if (precent > 10) {
- return precent.toFixed(1) + "%";
+function formatPercent(percent) {
+ if (percent > 10) {
+ return percent.toFixed(1) + "%";
} else {
- return precent.toFixed(2) + "%";
+ return percent.toFixed(2) + "%";
}
}
impl Args {
/// Parse command-line arguments.
///
- /// If a parsing error ocurred, exit the process and print out informative
+ /// If a parsing error occurred, exit the process and print out informative
/// error message to user.
pub fn parse(matches: ArgMatches) -> BoxResult<Args> {
let port = *matches.get_one::<u16>("port").unwrap();