| Index: native_client_sdk/src/examples/dlopen/index.html | 
| diff --git a/native_client_sdk/src/examples/dlopen/index.html b/native_client_sdk/src/examples/dlopen/index.html | 
| index 4ad4f54721fbd675abd05ff3c3e6322bd737303e..0e535b4c66f70d6b4de5fbff9127eb47cb6808c9 100644 | 
| --- a/native_client_sdk/src/examples/dlopen/index.html | 
| +++ b/native_client_sdk/src/examples/dlopen/index.html | 
| @@ -15,8 +15,13 @@ found in the LICENSE file. | 
| <body {{attrs}}> | 
| <h1>{{title}}</h1> | 
| <h2>Status: <code id="statusField">NO-STATUS</code></h2> | 
| -  <div>Magic eightball: type a question below, press the button, and get a | 
| -      response.</div> | 
| +  <p>The dlopen example demonstrates how build dynamic libraries and then | 
| +     open and use them at runtime.  When the page loads, type in a question and | 
| +     hit enter or click the ASK! button.  The question and answer will be | 
| +     displayed in the page under the text entry box.  Shared libraries are only | 
| +     available with the GLIBC toolchain.</p> | 
| +  <p>Magic eightball: type a question below, press the button, and get a | 
| +      response.</p> | 
| <form> | 
| <input type="text" id="question" value=""> | 
| <input type="submit" value="ASK!"> | 
| @@ -26,6 +31,6 @@ found in the LICENSE file. | 
| <!-- The NaCl plugin will be embedded inside the element with id "listener". | 
| See common.js.--> | 
| <div id="listener"></div> | 
| -  <div id="log"></div> | 
| +  <pre id="log" style="font-weight: bold"></pre> | 
| </body> | 
| </html> | 
|  |