diff --git a/d0355r3.html b/d0355r3.html
index 66b6fa6..bc5f542 100644
--- a/d0355r3.html
+++ b/d0355r3.html
@@ -9975,11 +9975,11 @@ Add to [thread.req.paramname] 33.2.1 Template parameter names:
1 Throughout this Clause, the names of template parameters are used to express type
requirements. If a template parameter is named Predicate
,
operator()
applied to the template argument shall return a value that is
-convertible to bool
. If a template parameter is named
-Clock
, use of Clock
with a type for which
-chrono::is_clock<Clock>::value
is false
shall be
-ill-formed. [Note: For example, use of local_time
with
-sleep_until
will result in a diagnostic. — end note]
+convertible to bool
. A program that instantiates a template with a
+template parameter named Clock
with a type for which
+chrono::is_clock<Clock>::value
is false
, is ill-formed.
+[Note: For example, use of local_time
with sleep_until
+will result in a diagnostic. — end note]