File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -863,12 +863,12 @@ impl dyn Error + Send + Sync {
863863 }
864864}
865865
866- /// An error reporter that print's an error and its sources.
866+ /// An error reporter that prints an error and its sources.
867867///
868868/// Report also exposes configuration options for formatting the error chain, either entirely on a
869869/// single line, or in multi-line format with each cause in the error chain on a new line.
870870///
871- /// `Report` only requires that the wrapped error implements `Error`. It doesn't require that the
871+ /// `Report` only requires that the wrapped error implement `Error`. It doesn't require that the
872872/// wrapped error be `Send`, `Sync`, or `'static`.
873873///
874874/// # Examples
@@ -972,7 +972,7 @@ impl dyn Error + Send + Sync {
972972///
973973/// ## Return from `main`
974974///
975- /// `Report` also implements `From` for all types that implement [`Error`], this when combined with
975+ /// `Report` also implements `From` for all types that implement [`Error`]; this when combined with
976976/// the `Debug` output means `Report` is an ideal starting place for formatting errors returned
977977/// from `main`.
978978///
@@ -1020,7 +1020,7 @@ impl dyn Error + Send + Sync {
10201020/// ```
10211021///
10221022/// **Note**: `Report`s constructed via `?` and `From` will be configured to use the single line
1023- /// output format, if you want to make sure your `Report`s are pretty printed and include backtrace
1023+ /// output format. If you want to make sure your `Report`s are pretty printed and include backtrace
10241024/// you will need to manually convert and enable those flags.
10251025///
10261026/// ```should_panic
You can’t perform that action at this time.
0 commit comments