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

@ -6,7 +6,7 @@ Expressions make your user interface code *reactive*. This means when your
application's data changes, the user interface reacts to the change
automatically.
.. code-block:: blueprintui
.. code-block:: blueprint
label: bind MyAppWindow.account.username;
/* ^ ^ ^
@ -81,7 +81,7 @@ Cast Expressions
Cast expressions allow Blueprint to know the type of an expression when it can't otherwise determine it.
.. code-block:: blueprintui
.. code-block:: blueprint
// Cast the result of the closure so blueprint knows it's a string
label: bind $my_closure() as <string>