comment only

This commit is contained in:
Don Stewart
2007-05-20 09:08:46 +00:00
parent b757a526db
commit d3d058345d

View File

@@ -119,10 +119,10 @@ data Workspace i a = Workspace { tag :: !i, stack :: Stack a }
-- --
-- A stack is a cursor onto a (possibly empty) window list. -- A stack is a cursor onto a (possibly empty) window list.
-- The data structure tracks focus by construction, and we follow the -- The data structure tracks focus by construction, and
-- master separately (since the wrapping behaviour of focusLeft/Right -- the master window is by convention the left most item.
-- reorders the window distribution, so we can't rely on the left most -- Focus operations will not reorder the list that results from
-- window remaining as master (TODO double check this)). -- flattening the cursor.
-- --
-- A 'Stack' can be viewed as a list with a hole punched in it to make -- A 'Stack' can be viewed as a list with a hole punched in it to make
-- the focused position. Under the zipper/calculus view of such -- the focused position. Under the zipper/calculus view of such