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
import (
"io"
"errors"
"time"
"fmt"
"bytes"
"errors"
"fmt"
"io"
"strings"
"time"
)
func escapeRoff(s string, additional ...string) string {

View File

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

View File

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