@@ -778,47 +778,47 @@ public static <A, B> F<B, A> join(final F<B, F<B, A>> f) {
778778
779779 /**
780780 * Partial application of the second argument to the supplied function to get a function of type
781- * <tt> A -> C</tt> . Same as <tt> flip(f).f(b)</tt> .
781+ * {@code A -> C} . Same as {@code flip(f).f(b)} .
782782 *
783783 * @param f The function to partially apply.
784784 * @param b The value to apply to the function.
785- * @return A new function based on <tt>f</tt> with its second argument applied.
785+ * @return A new function based on {@code f} with its second argument applied.
786786 */
787787 public static <A , B , C > F <A , C > partialApply2 (final F <A , F <B , C >> f , final B b ) {
788788 return a -> uncurryF2 (f ).f (a , b );
789789 }
790790
791791 /**
792792 * Partial application of the third argument to the supplied function to get a function of type
793- * <tt> A -> B -> D</tt> .
793+ * {@code A -> B -> D} .
794794 *
795795 * @param f The function to partially apply.
796796 * @param c The value to apply to the function.
797- * @return A new function based on <tt>f</tt> with its third argument applied.
797+ * @return A new function based on {@code f} with its third argument applied.
798798 */
799799 public static <A , B , C , D > F <A , F <B , D >> partialApply3 (final F <A , F <B , F <C , D >>> f , final C c ) {
800800 return a -> b -> uncurryF3 (f ).f (a , b , c );
801801 }
802802
803803 /**
804804 * Partial application of the fourth argument to the supplied function to get a function of type
805- * <tt> A -> B -> C -> E</tt> .
805+ * {@code A -> B -> C -> E} .
806806 *
807807 * @param f The function to partially apply.
808808 * @param d The value to apply to the function.
809- * @return A new function based on <tt>f</tt> with its fourth argument applied.
809+ * @return A new function based on {@code f} with its fourth argument applied.
810810 */
811811 public static <A , B , C , D , E > F <A , F <B , F <C , E >>> partialApply4 (final F <A , F <B , F <C , F <D , E >>>> f , final D d ) {
812812 return a -> b -> c -> uncurryF4 (f ).f (a , b , c , d );
813813 }
814814
815815 /**
816816 * Partial application of the fifth argument to the supplied function to get a function of type
817- * <tt> A -> B -> C -> D -> F$</tt> .
817+ * {@code A -> B -> C -> D -> F$} .
818818 *
819819 * @param f The function to partially apply.
820820 * @param e The value to apply to the function.
821- * @return A new function based on <tt>f</tt> with its fifth argument applied.
821+ * @return A new function based on {@code f} with its fifth argument applied.
822822 */
823823 public static <A , B , C , D , E , F$ > F <A , F <B , F <C , F <D , F$ >>>> partialApply5 (final F <A , F <B , F <C , F <D , F <E , F$ >>>>> f ,
824824 final E e ) {
@@ -827,11 +827,11 @@ public static <A, B, C, D, E> F<A, F<B, F<C, E>>> partialApply4(final F<A, F<B,
827827
828828 /**
829829 * Partial application of the sixth argument to the supplied function to get a function of type
830- * <tt> A -> B -> C -> D -> E -> G</tt> .
830+ * {@code A -> B -> C -> D -> E -> G} .
831831 *
832832 * @param f The function to partially apply.
833833 * @param f$ The value to apply to the function.
834- * @return A new function based on <tt>f</tt> with its sixth argument applied.
834+ * @return A new function based on {@code f} with its sixth argument applied.
835835 */
836836 public static <A , B , C , D , E , F$ , G > F <A , F <B , F <C , F <D , F <E , G >>>>> partialApply6 (
837837 final F <A , F <B , F <C , F <D , F <E , F <F$ , G >>>>>> f , final F$ f$ ) {
@@ -840,11 +840,11 @@ public static <A, B, C, D, E> F<A, F<B, F<C, E>>> partialApply4(final F<A, F<B,
840840
841841 /**
842842 * Partial application of the seventh argument to the supplied function to get a function of type
843- * <tt> A -> B -> C -> D -> E -> F$ -> H</tt> .
843+ * {@code A -> B -> C -> D -> E -> F$ -> H} .
844844 *
845845 * @param f The function to partially apply.
846846 * @param g The value to apply to the function.
847- * @return A new function based on <tt>f</tt> with its seventh argument applied.
847+ * @return A new function based on {@code f} with its seventh argument applied.
848848 */
849849 public static <A , B , C , D , E , F$ , G , H > F <A , F <B , F <C , F <D , F <E , F <F$ , H >>>>>> partialApply7 (
850850 final F <A , F <B , F <C , F <D , F <E , F <F$ , F <G , H >>>>>>> f , final G g ) {
@@ -853,11 +853,11 @@ public static <A, B, C, D, E> F<A, F<B, F<C, E>>> partialApply4(final F<A, F<B,
853853
854854 /**
855855 * Partial application of the eigth argument to the supplied function to get a function of type
856- * <tt> A -> B -> C -> D -> E -> F$ -> G -> I</tt> .
856+ * {@code A -> B -> C -> D -> E -> F$ -> G -> I} .
857857 *
858858 * @param f The function to partially apply.
859859 * @param h The value to apply to the function.
860- * @return A new function based on <tt>f</tt> with its eigth argument applied.
860+ * @return A new function based on {@code f} with its eigth argument applied.
861861 */
862862 public static <A , B , C , D , E , F$ , G , H , I > F <A , F <B , F <C , F <D , F <E , F <F$ , F <G , I >>>>>>> partialApply8 (
863863 final F <A , F <B , F <C , F <D , F <E , F <F$ , F <G , F <H , I >>>>>>>> f , final H h ) {
0 commit comments