File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
servant-client-core/src/Servant/Client/Core Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -874,7 +874,7 @@ infixl 2 /:
874
874
--
875
875
-- Example:
876
876
--
877
- -- @@
877
+ -- @
878
878
-- type Api = NamedRoutes RootApi
879
879
--
880
880
-- data RootApi mode = RootApi
@@ -895,7 +895,7 @@ infixl 2 /:
895
895
--
896
896
-- endpointClient :: ClientM Person
897
897
-- endpointClient = client // subApi // endpoint
898
- -- @@
898
+ -- @
899
899
(//) :: a -> (a -> b ) -> b
900
900
x // f = f x
901
901
@@ -906,7 +906,7 @@ x // f = f x
906
906
--
907
907
-- Example:
908
908
--
909
- -- @@
909
+ -- @
910
910
-- type Api = NamedRoutes RootApi
911
911
--
912
912
-- data RootApi mode = RootApi
@@ -931,7 +931,7 @@ x // f = f x
931
931
--
932
932
-- endpointClient :: ClientM Person
933
933
-- endpointClient = client // subApi /: "foobar123" // endpoint
934
- -- @@
934
+ -- @
935
935
(/:) :: (a -> b -> c ) -> b -> a -> c
936
936
(/:) = flip
937
937
You can’t perform that action at this time.
0 commit comments