make the example a bit better, encouraging people to use "suggestions of what to use" in the message :)


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@118612 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html
index c2e217b..3789eaa 100644
--- a/docs/LanguageExtensions.html
+++ b/docs/LanguageExtensions.html
@@ -302,14 +302,14 @@
 and <tt>unavailable</tt> attributes.  For example:</p>
 
 <blockquote>
-<pre>void explode(void) __attribute__((deprecated("extremely unsafe!!!")));</pre>
+<pre>void explode(void) __attribute__((deprecated("extremely unsafe, use 'combust' instead!!!")));</pre>
 </blockquote>
 
 <p>If the deprecated or unavailable declaration is used, the message
 will be incorporated into the appropriate diagnostic:</p>
 
 <blockquote>
-<pre>harmless.c:4:3: warning: 'explode' is deprecated: extremely unsafe!!! [-Wdeprecated-declarations]
+<pre>harmless.c:4:3: warning: 'explode' is deprecated: extremely unsafe, use 'combust' instead!!! [-Wdeprecated-declarations]
   explode();
   ^</pre>
 </blockquote>