Skip to content

Commit de43563

Browse files
authored
Merge pull request #1020 from jeckersb/961-followup
Typo fixup for #961
2 parents 255b743 + 3875368 commit de43563

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/experimental-progress-fd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is an experimental feature; tracking issue: <https://github.com/containers/
66
While the `bootc status` tooling allows a client to discover the state
77
of the system, during interactive changes such as `bootc upgrade`
88
or `bootc switch` it is possible to monitor the status of downloads
9-
or other operations at a fine-grained level with `-progress-fd`.
9+
or other operations at a fine-grained level with `--progress-fd`.
1010

1111
The format of data output over `--progress-fd` is [JSON Lines](https://jsonlines.org)
1212
which is a series of JSON objects separated by newlines (the intermediate
@@ -29,4 +29,4 @@ Importing and staging are affected by disk speed and the total image size. Pulli
2929
is affected by network speed and how many layers invalidate between pulls.
3030
Therefore, a large image with a good caching strategy will have longer
3131
importing and staging times, and a small bespoke container image will have
32-
negligible importing and staging times.
32+
negligible importing and staging times.

lib/src/progress_jsonl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ impl ProgressWriter {
227227
}
228228

229229
// For messages that can be dropped, if we already sent an update within this cycle, discard this one.
230-
// TODO: Also consider querying the pipe buffer and also dropping if wqe can't do this write.
230+
// TODO: Also consider querying the pipe buffer and also dropping if we can't do this write.
231231
let now = Instant::now();
232232
if !required {
233233
const REFRESH_MS: u32 = 1000 / REFRESH_HZ as u32;

0 commit comments

Comments
 (0)