Diffstat (limited to 'src/build.rs')
-rw-r--r--src/build.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build.rs b/src/build.rs
index d66bf84..640cd5c 100644
--- a/src/build.rs
+++ b/src/build.rs
@@ -17,7 +17,8 @@ pub trait Build<'ctx>: Sized {
/// A builder allows creating a value of a type [`Self::Value`].
/// The way to use a builder is as follows.
/// - Call [`Default::default()`] to create an instance of the builder.
-/// - Call [`Self::as_visitor()`] and give it to a walker's [`walk()`][crate::walk::Walker::walk]. The walker will then fill
+/// - Call [`Self::as_visitor()`] and give it to a walker's
+/// [`walk()`][crate::walk::Walker::walk]. The walker will then fill
/// the builder with data from it's walk.
/// - Call [`Self::build()`] to finish building the value and get any errors
/// that happened during filling it with data.