Skip to content

Commit a4d0b40

Browse files
authored
docs: restore missing diaereses (#664)
* docs: restore missing diaereses See: #156 * chore(lint): remove deprecated directive
1 parent 472d718 commit a4d0b40

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// )
2121
//
2222
// fmt.Println(groceries)
23-
package list //nolint:revive
23+
package list
2424

2525
import (
2626
"charm.land/lipgloss/v2"

position.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func Place(width, height int, hPos, vPos Position, str string, opts ...Whitespac
3939

4040
// PlaceHorizontal places a string or text block horizontally in an unstyled
4141
// block of a given width. If the given width is shorter than the max width of
42-
// the string (measured by its longest line) this will be a noop.
42+
// the string (measured by its longest line) this will be a noöp.
4343
func PlaceHorizontal(width int, pos Position, str string, opts ...WhitespaceOption) string {
4444
lines, contentWidth := getLines(str)
4545
gap := width - contentWidth
@@ -86,7 +86,7 @@ func PlaceHorizontal(width int, pos Position, str string, opts ...WhitespaceOpti
8686

8787
// PlaceVertical places a string or text block vertically in an unstyled block
8888
// of a given height. If the given height is shorter than the height of the
89-
// string (measured by its newlines) then this will be a noop.
89+
// string (measured by its newlines) then this will be a noöp.
9090
func PlaceVertical(height int, pos Position, str string, opts ...WhitespaceOption) string {
9191
contentHeight := strings.Count(str, "\n") + 1
9292
gap := height - contentHeight

0 commit comments

Comments
 (0)