aboutsummaryrefslogtreecommitdiff
path: root/azalea-brigadier/src/builder
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-brigadier/src/builder')
-rw-r--r--azalea-brigadier/src/builder/argument_builder.rs10
-rw-r--r--azalea-brigadier/src/builder/required_argument_builder.rs5
2 files changed, 9 insertions, 6 deletions
diff --git a/azalea-brigadier/src/builder/argument_builder.rs b/azalea-brigadier/src/builder/argument_builder.rs
index 945f7fcb..27320eba 100644
--- a/azalea-brigadier/src/builder/argument_builder.rs
+++ b/azalea-brigadier/src/builder/argument_builder.rs
@@ -77,8 +77,9 @@ impl<S> ArgumentBuilder<S> {
self
}
- /// Set the command to be executed when this node is reached. If this is not
- /// present on a node, it is not a valid command.
+ /// Set the command to be executed when this node is reached.
+ ///
+ /// If this is not present on a node, it is not a valid command.
///
/// ```
/// # use azalea_brigadier::prelude::*;
@@ -105,8 +106,9 @@ impl<S> ArgumentBuilder<S> {
self
}
- /// Set the requirement for this node to be considered. If this is not
- /// present on a node, it is considered to always pass.
+ /// Set the requirement for this node to be considered.
+ ///
+ /// If this is not present on a node, it is considered to always pass.
///
/// ```
/// # use azalea_brigadier::prelude::*;
diff --git a/azalea-brigadier/src/builder/required_argument_builder.rs b/azalea-brigadier/src/builder/required_argument_builder.rs
index 3fc33143..5aca8617 100644
--- a/azalea-brigadier/src/builder/required_argument_builder.rs
+++ b/azalea-brigadier/src/builder/required_argument_builder.rs
@@ -13,8 +13,9 @@ use crate::{
suggestion::{SuggestionProvider, Suggestions, SuggestionsBuilder},
};
-/// An argument node type. The `T` type parameter is the type of the argument,
-/// which can be anything.
+/// An argument node type.
+///
+/// The `T` type parameter is the type of the argument, which can be anything.
pub struct Argument<S> {
pub name: String,
parser: Arc<dyn ArgumentType + Send + Sync>,