1
0

formatting

This commit is contained in:
Arpad Ryszka 2025-10-23 02:55:49 +02:00
parent ace14e534c
commit 3b31267823
7 changed files with 52 additions and 52 deletions

View File

@ -1,12 +1,12 @@
package textfmt package textfmt
import ( import (
"io"
"errors"
"time"
"fmt"
"bytes" "bytes"
"errors"
"fmt"
"io"
"strings" "strings"
"time"
) )
func escapeRoff(s string, additional ...string) string { func escapeRoff(s string, additional ...string) string {

View File

@ -1,10 +1,10 @@
package textfmt package textfmt
import ( import (
"bytes"
"fmt"
"strings" "strings"
"unicode" "unicode"
"fmt"
"bytes"
) )
func timesn(s string, n int) string { func timesn(s string, n int) string {

View File

@ -1,8 +1,8 @@
package textfmt package textfmt
import ( import (
"io"
"fmt" "fmt"
"io"
"strings" "strings"
) )