File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -795,7 +795,7 @@ pub(crate) mod builtin {
795795 ///
796796 /// Two such examples are macros and `#[cfg]` environments.
797797 ///
798- /// Emit better compiler error if a macro is passed invalid values. Without the final branch,
798+ /// Emit a better compiler error if a macro is passed invalid values. Without the final branch,
799799 /// the compiler would still emit an error, but the error's message would not mention the two
800800 /// valid values.
801801 ///
@@ -812,7 +812,7 @@ pub(crate) mod builtin {
812812 /// // ^ will fail at compile time with message "This macro only accepts `foo` or `bar`"
813813 /// ```
814814 ///
815- /// Emit compiler error if one of a number of features isn't available.
815+ /// Emit a compiler error if one of a number of features isn't available.
816816 ///
817817 /// ```compile_fail
818818 /// #[cfg(not(any(feature = "foo", feature = "bar")))]
You can’t perform that action at this time.
0 commit comments