diff options
author | Miguel Ojeda <ojeda@kernel.org> | 2025-03-24 22:03:48 +0100 |
---|---|---|
committer | Jocelyn Falempe <jfalempe@redhat.com> | 2025-03-27 16:08:54 +0100 |
commit | 7e5f61c1bb26e7928a922702d581eaf0cb449609 (patch) | |
tree | 2fb95f6e8fd6d618259133cb2c46a13f189e839b | |
parent | e8b8b57783418d4c3b619d5f3e491a94115a6a83 (diff) |
drm/panic: add missing space
Add missing space in sentence.
This was found using the Clippy `doc_markdown` lint, which we may want
to enable.
Fixes: cb5164ac43d0 ("drm/panic: Add a QR code panic screen")
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>
Reviewed-by: Benno Lossin <benno.lossin@proton.me>
Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
Link: https://lore.kernel.org/r/20250324210359.1199574-2-ojeda@kernel.org
-rw-r--r-- | drivers/gpu/drm/drm_panic_qr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_panic_qr.rs b/drivers/gpu/drm/drm_panic_qr.rs index 3b0dd59781d4..8d369a5ecf4a 100644 --- a/drivers/gpu/drm/drm_panic_qr.rs +++ b/drivers/gpu/drm/drm_panic_qr.rs @@ -5,7 +5,7 @@ //! It is called from a panic handler, so it should't allocate memory and //! does all the work on the stack or on the provided buffers. For //! simplification, it only supports low error correction, and applies the -//! first mask (checkerboard). It will draw the smallest QRcode that can +//! first mask (checkerboard). It will draw the smallest QR code that can //! contain the string passed as parameter. To get the most compact //! QR code, the start of the URL is encoded as binary, and the //! compressed kmsg is encoded as numeric. |