From 678c7c0087cda040d51c534187296a7e33c09de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Cruz?= Date: Sun, 19 Jan 2014 02:30:41 +0000 Subject: [PATCH] Doc typos. --- src/util/mixIn.js | 6 +++--- src/util/startsWith.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/util/mixIn.js b/src/util/mixIn.js index 98780b0..975c9a1 100644 --- a/src/util/mixIn.js +++ b/src/util/mixIn.js @@ -3,10 +3,10 @@ define(function () { 'use strict'; /** - * Copies properies from an object to another. + * Copies properties from an object to another. * - * @param {Object} target The target object - * @param {[type]} origin The object to copy from + * @param {Object} target The target object + * @param {Object} origin The object to copy from * * @return {Object} The target object */ diff --git a/src/util/startsWith.js b/src/util/startsWith.js index 69b0d48..5ab7b6c 100644 --- a/src/util/startsWith.js +++ b/src/util/startsWith.js @@ -5,8 +5,8 @@ define(function () { /** * Verifies if a string starts with another. * - * @param {String} str The string that will be checked - * @param {String} prefix The prefix to check + * @param {String} str The string that will be checked + * @param {String} prefix The prefix to check * * @return {Boolean} True if it starts, false otherwise */