#5341: fix "builtin" where used as an adjective ("built-in" is correct).
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index 5be6add..957c2c9 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -664,9 +664,10 @@
you won't be fooled into accidentally overwriting a list when you need a sorted
copy but also need to keep the unsorted version around.
-In Python 2.4 a new builtin -- :func:`sorted` -- has been added. This function
-creates a new list from a provided iterable, sorts it and returns it. For
-example, here's how to iterate over the keys of a dictionary in sorted order::
+In Python 2.4 a new built-in function -- :func:`sorted` -- has been added.
+This function creates a new list from a provided iterable, sorts it and returns
+it. For example, here's how to iterate over the keys of a dictionary in sorted
+order::
for key in sorted(mydict):
... # do whatever with mydict[key]...