File tree 1 file changed +4
-4
lines changed
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 {
863
863
}
864
864
}
865
865
866
- /// An error reporter that print's an error and its sources.
866
+ /// An error reporter that prints an error and its sources.
867
867
///
868
868
/// Report also exposes configuration options for formatting the error chain, either entirely on a
869
869
/// single line, or in multi-line format with each cause in the error chain on a new line.
870
870
///
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
872
872
/// wrapped error be `Send`, `Sync`, or `'static`.
873
873
///
874
874
/// # Examples
@@ -972,7 +972,7 @@ impl dyn Error + Send + Sync {
972
972
///
973
973
/// ## Return from `main`
974
974
///
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
976
976
/// the `Debug` output means `Report` is an ideal starting place for formatting errors returned
977
977
/// from `main`.
978
978
///
@@ -1020,7 +1020,7 @@ impl dyn Error + Send + Sync {
1020
1020
/// ```
1021
1021
///
1022
1022
/// **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
1024
1024
/// you will need to manually convert and enable those flags.
1025
1025
///
1026
1026
/// ```should_panic
You can’t perform that action at this time.
0 commit comments