Skip to content

Commit 5c8196c

Browse files
committed
typos!
1 parent 636f3c8 commit 5c8196c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The most common goal when working with your view is usually to set or to adjust
88

99
HTML and CSS make this difficult because there's no central place that represents your layout.
1010

11-
You're generally forced to bounce back and forth between multiple definitions in multiple files in order to adjust layout, even though it's pribably the most common thing you'll do.
11+
You're generally forced to bounce back and forth between multiple definitions in multiple files in order to adjust layout, even though it's probably the most common thing you'll do.
1212

1313
### Separating Layout and Style
1414

src/Element.elm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ layout =
12371237
Render.root
12381238

12391239

1240-
{-| Same as `root`, but the height and width of the site is set to the height and width of the screen.
1240+
{-| Same as `layout`, but the height and width of the site is set to the height and width of the screen.
12411241
-}
12421242
viewport : StyleSheet style variation -> Element style variation msg -> Html msg
12431243
viewport =
@@ -1260,22 +1260,22 @@ embedStylesheet sheet =
12601260
Render.embed False sheet
12611261

12621262

1263-
{-| DEPRECATED, will be removed in the next major version
1263+
{-| DEPRECATED, will be removed in the next major version. Use `toHtml` instead.
12641264
-}
12651265
render : StyleSheet style variation -> Element style variation msg -> Html msg
12661266
render stylesheet el =
12671267
Html.div []
12681268
(Render.render stylesheet el)
12691269

12701270

1271-
{-| DEPRECATED, will be removed in the next major version
1271+
{-| DEPRECATED, will be removed in the next major version. Use `layout` instead.
12721272
-}
12731273
root : StyleSheet style variation -> Element style variation msg -> Html msg
12741274
root =
12751275
Render.root
12761276

12771277

1278-
{-| DEPRECATED, will be removed in the next major version
1278+
{-| DEPRECATED, will be removed in the next major version. Use `embedStylesheet` instead.
12791279
-}
12801280
embed : StyleSheet style variation -> Html msg
12811281
embed sheet =

0 commit comments

Comments
 (0)