Skip to content

Commit

Permalink
house-keeping: fixup minor typos
Browse files Browse the repository at this point in the history
Signed-off-by: Wilfred Mallawa <wilfred.mallawa@wdc.com>
  • Loading branch information
twilfredo committed Feb 22, 2024
1 parent 69c8037 commit 306d6cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/qemu_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static mut CLIENT_CONNECTION: OnceCell<TcpStream> = OnceCell::new();
/// # Summary
///
/// Sends message to the QEMU by writing the
/// `messasge_ptr` data to the TCP stream used by QEMU. This also writes the
/// `message_ptr` data to the TCP stream used by QEMU. This also writes the
/// additional information expected by QEMU.
///
/// # Parameter
Expand Down
2 changes: 1 addition & 1 deletion src/usb_i2c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ unsafe extern "C" fn usb_i2c_receive_message(

debug!("Received: {:x?}", &spdm_msg_buf[0..message_len]);

// Ammed our address to create a valid MCTP packet
// Amend our address to create a valid MCTP packet
spdm_msg_buf.copy_within(0..message_len, 1);
spdm_msg_buf[0] = SOURCE_ID << 1;
message_len = message_len + 1;
Expand Down
2 changes: 1 addition & 1 deletion tock-responder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ As we use libspdm for the backend you will first need to build libspdm.

Currently only `Release` mode for `libspdm` is supported. Building in `Debug`
mode requires additional functionality (`printf` support etc...), these are
currently not implemented by the tock-responder Rust implemention.
currently not implemented by the tock-responder Rust implementation.

#### Build libspdm for no_std targets

Expand Down

0 comments on commit 306d6cb

Please sign in to comment.