@@ -214,7 +214,7 @@ LocationUrl.prototype = {
214214 * Return full url representation with all segments encoded according to rules specified in
215215 * {@link http://www.ietf.org/rfc/rfc3986.txt RFC 3986}.
216216 *
217- * @return {string }
217+ * @return {string } full url
218218 */
219219 absUrl : locationGetter ( '$$absUrl' ) ,
220220
@@ -231,7 +231,7 @@ LocationUrl.prototype = {
231231 * Change path, search and hash, when called with parameter and return `$location`.
232232 *
233233 * @param {string= } url New url without base prefix (e.g. `/path?a=b#hash`)
234- * @return {string }
234+ * @return {string } url
235235 */
236236 url : function ( url , replace ) {
237237 if ( isUndefined ( url ) )
@@ -255,7 +255,7 @@ LocationUrl.prototype = {
255255 *
256256 * Return protocol of current url.
257257 *
258- * @return {string }
258+ * @return {string } protocol of current url
259259 */
260260 protocol : locationGetter ( '$$protocol' ) ,
261261
@@ -269,7 +269,7 @@ LocationUrl.prototype = {
269269 *
270270 * Return host of current url.
271271 *
272- * @return {string }
272+ * @return {string } host of current url.
273273 */
274274 host : locationGetter ( '$$host' ) ,
275275
@@ -283,7 +283,7 @@ LocationUrl.prototype = {
283283 *
284284 * Return port of current url.
285285 *
286- * @return {Number }
286+ * @return {Number } port
287287 */
288288 port : locationGetter ( '$$port' ) ,
289289
@@ -303,7 +303,7 @@ LocationUrl.prototype = {
303303 * if it is missing.
304304 *
305305 * @param {string= } path New path
306- * @return {string }
306+ * @return {string } path
307307 */
308308 path : locationGetterSetter ( '$$path' , function ( path ) {
309309 return path . charAt ( 0 ) == '/' ? path : '/' + path ;
@@ -325,7 +325,7 @@ LocationUrl.prototype = {
325325 * @param {string= } paramValue If `search` is a string, then `paramValue` will override only a
326326 * single search parameter. If the value is `null`, the parameter will be deleted.
327327 *
328- * @return {string }
328+ * @return {string } search
329329 */
330330 search : function ( search , paramValue ) {
331331 if ( isUndefined ( search ) )
@@ -358,7 +358,7 @@ LocationUrl.prototype = {
358358 * Change hash fragment when called with parameter and return `$location`.
359359 *
360360 * @param {string= } hash New hash fragment
361- * @return {string }
361+ * @return {string } hash
362362 */
363363 hash : locationGetterSetter ( '$$hash' , identity ) ,
364364
0 commit comments