diff --git a/src/com/adobe/net/URI.as b/src/com/adobe/net/URI.as index 0271d15..3c29566 100644 --- a/src/com/adobe/net/URI.as +++ b/src/com/adobe/net/URI.as @@ -830,7 +830,7 @@ package com.adobe.net * is used. This URI class supports the common "param=value" * style query syntax via the get/setQueryValue() and * get/setQueryByMap() functions. Those functions should be used - * instead if the common syntax is being used. + * instead if the common syntax is being used.

* *

The URI RFC does not specify any particular * syntax for the query part of a URI. It is intended to allow @@ -838,7 +838,7 @@ package com.adobe.net * However, most systems have standardized on the typical CGI * format:

* - * http://site.com/script.php?param1=value1¶m2=value2 + * http://site.com/script.php?param1=value1&param2=value2 * *

This class has specific support for this query syntax

* @@ -1062,7 +1062,7 @@ package com.adobe.net /** * Get the value for the specified named in the query part. This * assumes the query part of the URI is in the common - * "name1=value1&name2=value2" syntax. Do not call this function + * "name1=value1&name2=value2" syntax. Do not call this function * if you are using a custom query syntax. * * @param name name of the query value to get. @@ -1241,7 +1241,7 @@ package com.adobe.net * intended to be called on each individual "name" and "value" * in the query making sure that nothing in the name or value * strings contain characters that would conflict with the query - * syntax (e.g. '=' and '&'). + * syntax (e.g. '=' and '&'). * * @param unescaped unescaped string that is to be escaped. * @@ -1483,7 +1483,7 @@ package com.adobe.net * Get the ".xyz" file extension from the filename in the URI. * For example, if we have the following URI: * - * http://something.com/path/to/my/page.html?form=yes&name=bob#anchor + * http://something.com/path/to/my/page.html?form=yes&name=bob#anchor * *

This will return ".html".

*