aboutsummaryrefslogtreecommitdiff
path: root/src/visit_mut.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/visit_mut.rs')
-rw-r--r--src/visit_mut.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/visit_mut.rs b/src/visit_mut.rs
index 2c2af97..c823cfb 100644
--- a/src/visit_mut.rs
+++ b/src/visit_mut.rs
@@ -45,6 +45,8 @@
//! 2 decimal points.
//!
//! ```
+//! # #[cfg(feature = "parse")] {
+//! # #[cfg(feature = "display")] {
//! # use toml_edit::*;
//! use toml_edit::visit_mut::*;
//!
@@ -80,10 +82,12 @@
//! "#;
//!
//! assert_eq!(format!("{}", document), output);
+//! # }
+//! # }
//! ```
//!
//! For a more complex example where the visitor has internal state, see `examples/visit.rs`
-//! [on GitHub](https://github.com/ordian/toml_edit/blob/master/examples/visit.rs).
+//! [on GitHub](https://github.com/toml-rs/toml/blob/main/crates/toml_edit/examples/visit.rs).
use crate::{
Array, ArrayOfTables, Datetime, Document, Formatted, InlineTable, Item, KeyMut, Table,