Skip to content

Commit

Permalink
Fix code error in the Command Graph docs page
Browse files Browse the repository at this point in the history
  • Loading branch information
VelocityREST authored and elParaguayo committed Dec 29, 2023
1 parent f75ee88 commit c5e7fc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/manual/commands/command_graph.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ We can access the "info" command on the current group like so:
To access a specific group, regardless of whether or not it is current, we use
the Python mapping lookup syntax. This command sends group "b" to screen 1 (by
the :meth:`libqtile.config.Group.to_screen` method):
the :meth:`libqtile.config.Group.toscreen` method):

.. code-block:: python
c.group["b"].to_screen(1)
c.group["b"].toscreen(1)
In different contexts, it is possible to access a default object, where in
other contexts a key is required. From the root of the graph, the current
Expand Down

0 comments on commit c5e7fc9

Please sign in to comment.