summaryrefslogtreecommitdiff
path: root/rust/src/command.rs
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-01-30 22:50:58 -0500
committerKyleMiles <krm504@nyu.edu>2023-01-30 22:50:58 -0500
commitde663e595b6c47653e4a953473ed42eba5ffcb97 (patch)
tree21165e07ee47b394e63254282fde295e980b2264 /rust/src/command.rs
parent895b186c0273146ac915d855214e98e07f54de65 (diff)
Rust API : Slight docs improvements
Diffstat (limited to 'rust/src/command.rs')
-rw-r--r--rust/src/command.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/rust/src/command.rs b/rust/src/command.rs
index 977aad4c..1d5eb622 100644
--- a/rust/src/command.rs
+++ b/rust/src/command.rs
@@ -63,7 +63,7 @@ where
///
/// # Example
/// ```rust
-/// Struct MyCommand;
+/// struct MyCommand;
///
/// impl Command for MyCommand {
/// fn action(&self, view: &BinaryView) {
@@ -161,7 +161,7 @@ where
///
/// # Example
/// ```rust
-/// Struct MyCommand;
+/// struct MyCommand;
///
/// impl AddressCommand for MyCommand {
/// fn action(&self, view: &BinaryView, addr: u64) {
@@ -259,7 +259,7 @@ where
///
/// # Example
/// ```rust
-/// Struct MyCommand;
+/// struct MyCommand;
///
/// impl AddressCommand for MyCommand {
/// fn action(&self, view: &BinaryView, range: Range<u64>) {
@@ -362,7 +362,7 @@ where
///
/// # Example
/// ```rust
-/// Struct MyCommand;
+/// struct MyCommand;
///
/// impl AddressCommand for MyCommand {
/// fn action(&self, view: &BinaryView, func: &Function) {