diff --git a/pandas/core/strings/object_array.py b/pandas/core/strings/object_array.py index 2f65ce17f93b2..1904ce32f3170 100644 --- a/pandas/core/strings/object_array.py +++ b/pandas/core/strings/object_array.py @@ -435,7 +435,7 @@ def _str_rstrip(self, to_strip=None): def _str_removeprefix(self, prefix: str) -> Series: # outstanding question on whether to use native methods for users - # on Python 3.9+ https://git.io/JE9QK, in which case we could do + # on Python 3.9+ https://bit.ly/3LuMeRn, in which case we could do # return self._str_map(str.removeprefix) def removeprefix(text: str) -> str: