Update comments

This commit is contained in:
Marcus Kammer 2025-02-09 11:23:45 +01:00
parent e5b73b224a
commit 1ccc635485
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -54,6 +54,7 @@ GRID-CLASS: Can be:
- A list of grid options for make-grid-class - A list of grid options for make-grid-class
- A call to make-grid-class - A call to make-grid-class
Examples: Examples:
(section \"row\" nil \"foo\")
(section (:row 1 :xs 2) nil \"foo\") (section (:row 1 :xs 2) nil \"foo\")
(section (make-grid-class :row 1 :xs 2) nil \"foo\") (section (make-grid-class :row 1 :xs 2) nil \"foo\")
@ -62,6 +63,7 @@ ROW-CLASS: Similar to GRID-CLASS. Can be:
- A list of grid options for make-grid-class - A list of grid options for make-grid-class
- A call to make-grid-class - A call to make-grid-class
Examples: Examples:
(section nil \"row\" \"foo\")
(section nil (:row 1 :xs 2) \"foo\") (section nil (:row 1 :xs 2) \"foo\")
(section nil (make-grid-class :row 1 :xs 2) \"foo\") (section nil (make-grid-class :row 1 :xs 2) \"foo\")