Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9250099

Browse files
Pavel Shirshovandre-richter
Pavel Shirshov
authored andcommitted
Fix even more typos s/write:fmt/write_fmt/
1 parent 66c68e3 commit 9250099

File tree

16 files changed

+17
-17
lines changed

16 files changed

+17
-17
lines changed

‎04_safe_globals/src/bsp/raspberrypi/console.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ use synchronization::interface::Mutex;
103103
/// serialize access.
104104
impl console::interface::Write for QEMUOutput {
105105
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
106-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
106+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
107107
// readability.
108108
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
109109
}

‎05_drivers_gpio_uart/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ diff -uNr 04_safe_globals/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs 05_dri
831831
+ }
832832
+
833833
+ fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
834-
+ // Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
834+
+ // Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
835835
+ // readability.
836836
+ self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
837837
+ }
@@ -1067,7 +1067,7 @@ diff -uNr 04_safe_globals/src/bsp/raspberrypi/console.rs 05_drivers_gpio_uart/sr
10671067
-/// serialize access.
10681068
-impl console::interface::Write for QEMUOutput {
10691069
- fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
1070-
- // Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
1070+
- // Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
10711071
- // readability.
10721072
- self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
10731073
- }

‎05_drivers_gpio_uart/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl console::interface::Write for PL011Uart {
364364
}
365365

366366
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
367-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
367+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
368368
// readability.
369369
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
370370
}

‎06_uart_chainloader/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ impl console::interface::Write for PL011Uart {
359359
}
360360

361361
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
362-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
362+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
363363
// readability.
364364
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
365365
}

‎07_timestamps/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl console::interface::Write for PL011Uart {
364364
}
365365

366366
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
367-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
367+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
368368
// readability.
369369
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
370370
}

‎08_hw_debug_JTAG/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl console::interface::Write for PL011Uart {
364364
}
365365

366366
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
367-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
367+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
368368
// readability.
369369
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
370370
}

‎09_privilege_level/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl console::interface::Write for PL011Uart {
364364
}
365365

366366
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
367-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
367+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
368368
// readability.
369369
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
370370
}

‎10_virtual_mem_part1_identity_mapping/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl console::interface::Write for PL011Uart {
364364
}
365365

366366
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
367-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
367+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
368368
// readability.
369369
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
370370
}

‎11_exceptions_part1_groundwork/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl console::interface::Write for PL011Uart {
364364
}
365365

366366
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
367-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
367+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
368368
// readability.
369369
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
370370
}

‎12_integrated_testing/kernel/src/bsp/device_driver/bcm/bcm2xxx_pl011_uart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ impl console::interface::Write for PL011Uart {
364364
}
365365

366366
fn write_fmt(&self, args: core::fmt::Arguments) -> fmt::Result {
367-
// Fully qualified syntax for the call to `core::fmt::Write::write:fmt()` to increase
367+
// Fully qualified syntax for the call to `core::fmt::Write::write_fmt()` to increase
368368
// readability.
369369
self.inner.lock(|inner| fmt::Write::write_fmt(inner, args))
370370
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /