Tweak text.

This commit is contained in:
Nicholas Marriott
2026-06-18 23:02:50 +01:00
parent 37a1a13bfa
commit 944d289454

View File

@@ -27,13 +27,13 @@
/* /*
* Draw the visible area of a window to a client. * Draw the visible area of a window to a client.
* *
* A scene is built for the client and cached (in struct client). It is * A scene is built for the client and cached (in struct client). When the
* invalidated when the offset or size of the visible part of the window * offset or size of the visible part of the window changes, the scene is
* changes, or at various other points such as when a pane is moved or resized, * invalidated. It is also invalidated when the generation number is increased;
* through a generation number. The scene only includes the part of the client * this is done at various points, such as when a pane is moved or resized. The
* used for the window: panes, pane status lines, borders, scrollbars, and any * scene only includes the part of the client used for the window: panes, pane
* area outside the window. The client status line and overlay are not * status lines, borders, scrollbars, and any area outside the window. The
* included. * client status line and overlay are not included.
* *
* A scene is made from spans. A span is a horizontal run of cells on one * A scene is made from spans. A span is a horizontal run of cells on one
* visible line that can be drawn in the same way. Each span has a type, for * visible line that can be drawn in the same way. Each span has a type, for