summaryrefslogtreecommitdiff
path: root/rust/src/architecture/branches.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-12-08 19:18:12 -0500
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-12-10 17:35:19 -0500
commit2c7ba495a6c1d8b3639b74334b0cdd1809af807e (patch)
treea83f47d51954ad4abf24c64f6d37465b1ebbc1ea /rust/src/architecture/branches.rs
parentbc195c1c21da0400a1a1dde1fcdde45d687e666f (diff)
[Rust] Remove `UnusedRegisterStackInfo` and update architecture documentation
Diffstat (limited to 'rust/src/architecture/branches.rs')
-rw-r--r--rust/src/architecture/branches.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/architecture/branches.rs b/rust/src/architecture/branches.rs
index 80baa1b6..a6810b34 100644
--- a/rust/src/architecture/branches.rs
+++ b/rust/src/architecture/branches.rs
@@ -22,7 +22,7 @@ pub enum BranchKind {
#[derive(Default, Copy, Clone, PartialEq, Eq, Hash, Debug)]
pub struct BranchInfo {
- /// If `None` the target architecture is the same as the branch instruction.
+ /// If `None`, the target architecture is the same as the branching instruction.
pub arch: Option<CoreArchitecture>,
pub kind: BranchKind,
}