From d7cdb15743ad7e60d05f1e44eda4b20d92c26acb Mon Sep 17 00:00:00 2001 From: Zach Wernberg Date: Fri, 30 Oct 2015 22:06:43 -0500 Subject: [PATCH] fixed typo with stringlike --- rest_framework/relations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/relations.py b/rest_framework/relations.py index 40261f3f3..7fb337ad2 100644 --- a/rest_framework/relations.py +++ b/rest_framework/relations.py @@ -23,7 +23,7 @@ from rest_framework.utils import html class Hyperlink(six.text_type): """ - A string like object that additionally has an associated name. + A stringlike object that additionally has an associated name. We use this for hyperlinked URLs that may render as a named link in some contexts, or render as a plain URL in others. """