1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00

fix: fix goline error

This commit is contained in:
dudaodong
2023-01-05 14:55:47 +08:00
parent d8505d1a5f
commit d9c6294775
5 changed files with 47 additions and 14 deletions

View File

@@ -44,7 +44,11 @@ func ExampleRemoveOsEnv() {
}
func ExampleCompareOsEnv() {
SetOsEnv("foo", "abc")
err := SetOsEnv("foo", "abc")
if err != nil {
return
}
result1 := CompareOsEnv("foo", "abc")
fmt.Println(result1)