@@ -252,7 +252,7 @@ function Browser(window, document, $log, $sniffer) {
252252 * @methodOf ng.$browser
253253 *
254254 * @param {string= } name Cookie name
255- * @param {string= } value Cokkie value
255+ * @param {string= } value Cookie value
256256 *
257257 * @description
258258 * The cookies method provides a 'private' low level access to browser cookies.
@@ -314,7 +314,7 @@ function Browser(window, document, $log, $sniffer) {
314314 * @returns {* } DeferId that can be used to cancel the task via `$browser.defer.cancel()`.
315315 *
316316 * @description
317- * Executes a fn asynchroniously via `setTimeout(fn, delay)`.
317+ * Executes a fn asynchronously via `setTimeout(fn, delay)`.
318318 *
319319 * Unlike when calling `setTimeout` directly, in test this function is mocked and instead of using
320320 * `setTimeout` in tests, the fns are queued in an array, which can be programmatically flushed
@@ -341,7 +341,7 @@ function Browser(window, document, $log, $sniffer) {
341341 * Cancels a defered task identified with `deferId`.
342342 *
343343 * @param {* } deferId Token returned by the `$browser.defer` function.
344- * @returns {boolean } Returns `true` if the task hasn't executed yet and was successfuly canceled.
344+ * @returns {boolean } Returns `true` if the task hasn't executed yet and was successfully canceled.
345345 */
346346 self . defer . cancel = function ( deferId ) {
347347 if ( pendingDeferIds [ deferId ] ) {
0 commit comments