diff --git a/README.rst b/README.rst
index 0ac7bd8fb6..aa6d45412e 100644
--- a/README.rst
+++ b/README.rst
@@ -69,7 +69,7 @@ If you want to use English tokenizer from `SpaCy `_, you need
pip install spacy
python -m spacy download en_core_web_sm
-Alternatively, you might want to use the `Moses `_ tokenizer port in `SacreMoses `_ (split from `NLTK `_). You have to install SacreMoses::
+Alternatively, you might want to use the `Moses `_ tokenizer port in `SacreMoses `_ (split from `NLTK `_). You have to install SacreMoses::
pip install sacremoses
diff --git a/torchtext/data/utils.py b/torchtext/data/utils.py
index 89a72ea455..bbc826a9a0 100644
--- a/torchtext/data/utils.py
+++ b/torchtext/data/utils.py
@@ -126,7 +126,7 @@ def get_tokenizer(tokenizer, language="en"):
except ImportError:
print(
"Please install SacreMoses. "
- "See the docs at https://github.com/alvations/sacremoses "
+ "See the docs at https://github.com/hplt-project/sacremoses "
"for more information."
)
raise