flush
[mdref/mdref-http] / http / Env / negotiateContentType.md
index 510e33f176630342ddc20bc6a78af521c15d1b53..7b2ea31aa0a30184d3a566956229cc8c6ee630e5 100644 (file)
@@ -6,20 +6,20 @@ Negotiate the client's preferred MIME content type.
 
 ## Params:
 
-* ```array $supported```  
+* array $supported  
   List of supported MIME content types.
-* Optional reference ```array &$result```  
+* Optional reference array &$result  
   Out parameter recording negotiation results.
   
 ## Returns:
 
-* ```NULL```, if negotiation fails.
-* ```string```, the negotiated content type.
+* NULL, if negotiation fails.
+* string, the negotiated content type.
 
 ## Example:
 
-A client indicates his accepted MIME content types by sending an ```Accept```
-header. The static ```http\Env``` class provides a facility to negotiate the
+A client indicates his accepted MIME content types by sending an Accept
+header. The static http\Env class provides a facility to negotiate the
 client's preferred content type:
 
     <?php