Skip to content

Commit 4469cf4

Browse files
committed
More typos and crate renames in the docs
1 parent dfa7a44 commit 4469cf4

File tree

22 files changed

+26
-27
lines changed

22 files changed

+26
-27
lines changed

aarch32-cpu/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! # Build script for the Cortex-R library
1+
//! # Build script for the aarch32-cpu library
22
//!
33
//! This script only executes when using `cargo` to build the project.
44
//!

aarch32-cpu/src/critical_section.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Code that implements the `critical-section` traits on Cortex-R or Cortex-A
1+
//! Code that implements the `critical-section` traits on AArch32
22
//!
33
//! We have single-core and multi-core versions. Select with the
44
//! `critical-section-single-core` and `critical-section-multi-core` features.

aarch32-cpu/src/interrupt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Interrupts on Arm Cortex-R
1+
//! Interrupts on Arm AArch32
22
33
use core::sync::atomic::{compiler_fence, Ordering};
44

aarch32-cpu/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
//! CPU/peripheral support for Arm Cortex-R
2-
1+
//! CPU/peripheral support for Arm AArch32
32
#![no_std]
43

54
mod critical_section;

aarch32-cpu/src/register/armv8r/hvbar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ impl Hvbar {
3535
///
3636
/// # Safety
3737
///
38-
/// You must supply a correctly-aligned address of a valid Arm Cortex-R
38+
/// You must supply a correctly-aligned address of a valid Arm AArch32
3939
/// Vector Table.
4040
#[inline]
4141
pub unsafe fn write(value: Self) {

aarch32-cpu/src/register/armv8r/vbar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl Vbar {
3434
///
3535
/// # Safety
3636
///
37-
/// You must supply a correctly-aligned address of a valid Arm Cortex-R
37+
/// You must supply a correctly-aligned address of a valid Arm AArch32
3838
/// Vector Table.
3939
#[inline]
4040
pub unsafe fn write(value: Self) {

aarch32-rt-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [
44
"Jonathan Pallant <[email protected]>",
55
"The Embedded Devices Working Group Arm Team <[email protected]>"
66
]
7-
description = "Run-Time macros for Arm Cortex-A and Cortex-R"
7+
description = "Run-Time macros for aarch32-rt"
88
edition = "2021"
99
license = "MIT OR Apache-2.0"
1010
name = "aarch32-rt-macros"

aarch32-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ categories = [
77
"embedded",
88
"no-std",
99
]
10-
description = "Run-time support for Arm Cortex-R"
10+
description = "Run-time support for Arm AArch32"
1111
edition = "2021"
1212
keywords = [
1313
"arm",

aarch32-rt/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! # Build script for the Cortex-R Runtime
1+
//! # Build script for aarch32-rt
22
//!
33
//! This script only executes when using `cargo` to build the project.
44
//!

examples/mps3-an536/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [
44
"The Embedded Devices Working Group Arm Team <[email protected]>"
55
]
66
default-run = "hello"
7-
description = "Examples for MPS3-AN536 device (Arm Cortex-R)"
7+
description = "Examples for MPS3-AN536 device (Arm Cortex-R52)"
88
edition = "2021"
99
homepage = "https://github.com/rust-embedded/cortex-ar.git"
1010
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)