@@ -28,7 +28,7 @@ def bind(
2828
2929 And returns a new container.
3030 Works for containers that represent success.
31- Is the opposite of :meth:`Rescueable.rescue`.
31+ Is the opposite of :meth:`~ Rescueable.rescue`.
3232 """
3333
3434
@@ -47,7 +47,7 @@ def map( # noqa: A003
4747 Applies 'function' to the contents of the functor.
4848
4949 And returns a new functor value.
50- Is the opposite of :meth:`Fixable.fix`.
50+ Is the opposite of :meth:`~ Fixable.fix`.
5151 """
5252
5353
@@ -63,7 +63,7 @@ def fix(
6363
6464 And returns a new functor value.
6565 Works for containers that represent failure.
66- Is the opposite of :meth:`Mappable.map`.
66+ Is the opposite of :meth:`~ Mappable.map`.
6767 """
6868
6969
@@ -88,7 +88,7 @@ def rescue(
8888
8989 And returns a new container.
9090 Works for containers that represent failure.
91- Is the opposite of :meth:`~bind`.
91+ Is the opposite of :meth:`~Bindable. bind`.
9292 """
9393
9494
@@ -108,14 +108,14 @@ def unwrap(self) -> _ValueType:
108108 Should be redefined for ones that actually have values.
109109 And for ones that raise an exception for no values.
110110
111- This method is the opposite of :meth:`~failure`.
111+ This method is the opposite of :meth:`~Unwrapable. failure`.
112112 """
113113
114114 def failure (self ) -> _ErrorType :
115115 """
116116 Custom magic method to unwrap inner value from the failed container.
117117
118- This method is the opposite of :meth:`~unwrap`.
118+ This method is the opposite of :meth:`~Unwrapable. unwrap`.
119119 """
120120
121121
@@ -132,7 +132,7 @@ def alt(
132132
133133 And returns a new functor value.
134134 Works for containers that represent failure.
135- Is the opposite of :meth:`~map`.
135+ Is the opposite of :meth:`~Mappable. map`.
136136 """
137137
138138
0 commit comments