@@ -79,15 +79,15 @@ def __repr__(self):
7979 def _find (* objs ):
8080 # type: (Any) -> Optional[Pin]
8181 """
82- Return the first :class:`ddtrace.pin .Pin` found on any of the provided objects or `None` if none were found
82+ Return the first :class:`ddtrace.trace .Pin` found on any of the provided objects or `None` if none were found
8383
8484
8585 >>> pin = Pin._find(wrapper, instance, conn)
8686
87- :param objs: The objects to search for a :class:`ddtrace.pin .Pin` on
87+ :param objs: The objects to search for a :class:`ddtrace.trace .Pin` on
8888 :type objs: List of objects
89- :rtype: :class:`ddtrace.pin .Pin`, None
90- :returns: The first found :class:`ddtrace.pin .Pin` or `None` is none was found
89+ :rtype: :class:`ddtrace.trace .Pin`, None
90+ :returns: The first found :class:`ddtrace.trace .Pin` or `None` is none was found
9191 """
9292 for obj in objs :
9393 pin = Pin .get_from (obj )
@@ -105,10 +105,10 @@ def get_from(obj):
105105
106106 >>> pin = Pin.get_from(conn)
107107
108- :param obj: The object to look for a :class:`ddtrace.pin .Pin` on
108+ :param obj: The object to look for a :class:`ddtrace.trace .Pin` on
109109 :type obj: object
110- :rtype: :class:`ddtrace.pin .Pin`, None
111- :returns: :class:`ddtrace.pin .Pin` associated with the object, or None if none was found
110+ :rtype: :class:`ddtrace.trace .Pin`, None
111+ :returns: :class:`ddtrace.trace .Pin` associated with the object, or None if none was found
112112 """
113113 if hasattr (obj , "__getddpin__" ):
114114 return obj .__getddpin__ ()
0 commit comments