Skip to content

Commit

Permalink
chore: bump CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thoas committed Mar 9, 2020
1 parent ab9f5b8 commit 4dfafc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -3,5 +3,5 @@ before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/stretchr/testify
go:
- "1.13"
- "1.14"
script: make test
5 changes: 3 additions & 2 deletions README.rst
Expand Up @@ -375,11 +375,12 @@ Retrieves the value at path of struct(s).
funk.GetOrElse
.........
..............

Retrieves the value of the pointer or default.

.. code-block:: go
str := "hello world"
GetOrElse(&str, "foobar") // string{"hello world"}
GetOrElse(str, "foobar") // string{"hello world"}
Expand Down Expand Up @@ -539,7 +540,7 @@ see also, typesafe implementations: ShuffleInt_, ShuffleInt64_, ShuffleFloat32_,
.. _ShuffleString: https://godoc.org/github.com/thoas/go-funk#ShuffleString

funk.Subtract
............
.............

Returns the subtraction between two collections. It preserve order.

Expand Down

0 comments on commit 4dfafc7

Please sign in to comment.