diff --git a/mmseg/models/decode_heads/setr_mla_head.py b/mmseg/models/decode_heads/setr_mla_head.py
index 86e493d2e8cd254d399da035d6229661ffb729dd..c4e22bf7d6a58f043a782d968dcf39a19ca93211 100644
--- a/mmseg/models/decode_heads/setr_mla_head.py
+++ b/mmseg/models/decode_heads/setr_mla_head.py
@@ -11,7 +11,7 @@ from .decode_head import BaseDecodeHead
 class SETRMLAHead(BaseDecodeHead):
     """Multi level feature aggretation head of SETR.
 
-    MLA head of `SETR  <https://arxiv.org/pdf/2012.15840.pdf>`.
+    MLA head of `SETR  <https://arxiv.org/pdf/2012.15840.pdf>`_.
 
     Args:
         mlahead_channels (int): Channels of conv-conv-4x of multi-level feature
diff --git a/mmseg/models/decode_heads/setr_up_head.py b/mmseg/models/decode_heads/setr_up_head.py
index d64896f76b2ca23568bc4c6c4d47384d24b09616..a2595ad514c61a18b0f9d16e39e19f4ecdfadbc0 100644
--- a/mmseg/models/decode_heads/setr_up_head.py
+++ b/mmseg/models/decode_heads/setr_up_head.py
@@ -10,7 +10,7 @@ from .decode_head import BaseDecodeHead
 class SETRUPHead(BaseDecodeHead):
     """Naive upsampling head and Progressive upsampling head of SETR.
 
-    Naive or PUP head of `SETR  <https://arxiv.org/pdf/2012.15840.pdf>`.
+    Naive or PUP head of `SETR  <https://arxiv.org/pdf/2012.15840.pdf>`_.
 
     Args:
         norm_layer (dict): Config dict for input normalization.