Fix incorrectly rendered C++ docs code fence

This commit is contained in:
Simon Hausmann 2023-03-24 20:39:27 +01:00 committed by GitHub
parent f87b3b0758
commit e3800fd3c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,7 +80,7 @@ private:
///
/// The following example creates a 320x200 RGB pixel buffer and calls a function to draw a shape
/// into it:
/// ```c++
/// ```cpp
/// slint::SharedPixelBuffer::<slint::Rgb8Pixel> pixel_buffer(320, 200);
/// low_level_render(pixel_buffer.width(), pixel_buffer.height(),
/// static_cast<unsigned char *>(pixel_buffer.begin()));