1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-08-10 22:31:32 +02:00

doc: fix case

Signed-off-by: Dr. Carsten Leue <carsten.leue@de.ibm.com>
This commit is contained in:
Dr. Carsten Leue
2023-07-18 15:57:54 +02:00
parent 308fe48718
commit b25de3c7c3
287 changed files with 662 additions and 656 deletions

View File

@@ -5,8 +5,8 @@ package identity
import (
A "github.com/ibm/fp-go/internal/apply"
T "github.com/ibm/fp-go/tuple"
A "github.com/IBM/fp-go/internal/apply"
T "github.com/IBM/fp-go/tuple"
)
// SequenceT1 converts 1 parameters of [T] into a [Tuple1].

View File

@@ -1,8 +1,8 @@
package generic
import (
F "github.com/ibm/fp-go/function"
C "github.com/ibm/fp-go/internal/chain"
F "github.com/IBM/fp-go/function"
C "github.com/IBM/fp-go/internal/chain"
)
func MonadAp[GAB ~func(A) B, B, A any](fab GAB, fa A) B {

View File

@@ -1,8 +1,8 @@
package identity
import (
F "github.com/ibm/fp-go/function"
G "github.com/ibm/fp-go/identity/generic"
F "github.com/IBM/fp-go/function"
G "github.com/IBM/fp-go/identity/generic"
)
func MonadAp[B, A any](fab func(A) B, fa A) B {

View File

@@ -3,8 +3,8 @@ package identity
import (
"testing"
F "github.com/ibm/fp-go/function"
"github.com/ibm/fp-go/internal/utils"
F "github.com/IBM/fp-go/function"
"github.com/IBM/fp-go/internal/utils"
"github.com/stretchr/testify/assert"
)