Browse Source

fix table so generic type parameters are visible

James Manning 11 years ago
parent
commit
c931e172b2
1 changed files with 4 additions and 4 deletions
  1. 4 4
      README.md

+ 4 - 4
README.md

@@ -20,12 +20,12 @@ Rx complements and interoperates smoothly with both synchronous data streams (`I
    <tr>
       <td>Pull/Synchronous/Interactive</td>
       <td>T</td>
-      <td>IEnumerable<T></td>
+      <td>IEnumerable&lt;T&gt;</td>
    </tr>
    <tr>
       <td>Push/Asynchronous/Reactive</td>
-      <td>Task<T></td>
-      <td>IObservable<T></td>
+      <td>Task&lt;T&gt;</td>
+      <td>IObservable&lt;T&gt;</td>
    </tr>
 </table>
 
@@ -57,4 +57,4 @@ Contributing Code
 
 Before submitting a feature or substantial code contribution please  discuss it with the team and ensure it follows the product roadmap. Note that all code submissions will be rigorously reviewed and tested by the Rx Team, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source. 
 
-You will need to submit a  Contributor License Agreement form before submitting your pull request. This needs to only be done once for any Microsoft OSS project. Download the Contributor License Agreement (CLA). Please fill in, sign, scan and email it to <[email protected]>. 
+You will need to submit a  Contributor License Agreement form before submitting your pull request. This needs to only be done once for any Microsoft OSS project. Download the Contributor License Agreement (CLA). Please fill in, sign, scan and email it to <[email protected]>.