docs: Use correct lexer name for code blocks

This commit is contained in:
James Westman 2023-08-31 14:58:29 -05:00
parent a8512d83f3
commit 0f5be1b051
11 changed files with 37 additions and 37 deletions

View file

@ -15,7 +15,7 @@ Widget subclassing is one of the primary techniques for structuring an applicati
You could implement this with the following blueprint:
.. code-block:: blueprintui
.. code-block:: blueprint
using Gtk 4.0;
@ -39,7 +39,7 @@ We can solve these problems by giving each widget its own blueprint file, which
For this to work, we need to specify in the blueprint which object is the one being instantiated. We do this with a template block:
.. code-block:: blueprintui
.. code-block:: blueprint
using Gtk 4.0;
@ -56,7 +56,7 @@ This blueprint can only be used by the ``MapsHeaderBar`` constructor. Instantiat
This ``MapsHeaderBar`` class, along with its blueprint template, can then be referenced in another blueprint:
.. code-block:: blueprintui
.. code-block:: blueprint
using Gtk 4.0;