Skip to content

Commit 5351320

Browse files
hovinenbcopybara-github
authored andcommitted
Fix the directive to hide documentation in the summarize_diff module.
The existing directive was an attribute on the first element of the module rather than on the module itself. So it had no effect. PiperOrigin-RevId: 549346674
1 parent 981021e commit 5351320

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

googletest/src/matcher_support/summarize_diff.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#[doc(hidden)]
15+
#![doc(hidden)]
16+
1617
use std::borrow::Cow;
1718
use std::fmt::{Display, Write};
1819

0 commit comments

Comments
 (0)