Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion uefi/src/proto/console/text/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl Input {
/// fn read_keyboard_events(input: &mut Input) -> Result {
/// loop {
/// // Pause until a keyboard event occurs.
/// let mut events = unsafe { [input.wait_for_key_event().unwrap()] };
/// let mut events = [input.wait_for_key_event().unwrap()];
/// boot::wait_for_event(&mut events).discard_errdata()?;
///
/// let u_key = Char16::try_from('u').unwrap();
Expand Down
Loading