Skip to content

Commit

Permalink
doc: fix typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
maaslalani authored and meowgorithm committed Nov 22, 2021
1 parent 43f7d86 commit 87d191b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -148,7 +148,7 @@ var style = lipgloss.NewStyle().

## Width and Height

Setting a minimim width and height is simple and straightforward.
Setting a minimum width and height is simple and straightforward.

```go
var str = lipgloss.NewStyle().
Expand All @@ -164,7 +164,7 @@ var str = lipgloss.NewStyle().
Adding borders is easy:

```go
// Add a purple, regtangular border
// Add a purple, rectangular border
var style = lipgloss.NewStyle().
BorderStyle(lipgloss.NormalBorder()).
BorderForeground(lipgloss.Color("63"))
Expand Down Expand Up @@ -291,7 +291,7 @@ fmt.Printf("%s\n", style)

## Utilities

In addition to pure styling, Lip Gloss also ships with some utilties to help
In addition to pure styling, Lip Gloss also ships with some utilities to help
assemble your layouts.


Expand Down Expand Up @@ -323,7 +323,7 @@ var block string = lipgloss.NewStyle().
Padding(2).
Render(someLongString)

// Get the actual, phsical dimensions of the text block.
// Get the actual, physical dimensions of the text block.
width := lipgloss.Width(block)
height := lipgloss.Height(block)

Expand Down

0 comments on commit 87d191b

Please sign in to comment.