Skip to content

Commit 3efcb6c

Browse files
committed
Fix sketch_lustre.setup documentation
1 parent 0f57db5 commit 3efcb6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sketch/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ pub fn main() {
9595
// once before rendering the application. You can initialize one stylesheet
9696
// for your entire app, or multiple stylesheets if you're running server
9797
// components (in that case, one stylesheet per client is recommended).
98-
let assert Ok(stylesheet) = sketch.setup()
98+
let assert Ok(stylesheet) = sketch_lustre.setup()
9999
// Because stylesheets are persistents with sketch_lustre, you can inject
100100
// classes, keyframes or @rules directly in it.
101101
sketch.global(stylesheet, css.global("body", [css.margin(px(0))]))

sketch_lustre/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub fn main() {
2222
// once before rendering the application. You can initialize one stylesheet
2323
// for your entire app, or multiple stylesheets if you're running server
2424
// components (in that case, one stylesheet per client is recommended).
25-
let assert Ok(stylesheet) = sketch.setup()
25+
let assert Ok(stylesheet) = sketch_lustre.setup()
2626
// Because stylesheets are persistents with sketch_lustre, you can inject
2727
// classes, keyframes or @rules directly in it.
2828
sketch.global(stylesheet, css.global("body", [css.margin(px(0))]))

0 commit comments

Comments
 (0)