summaryrefslogtreecommitdiff
path: root/rust/src/command.rs
diff options
context:
space:
mode:
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) {