From 7d5cb1e48e2f98f57bb4bb80c151458806afa216 Mon Sep 17 00:00:00 2001 From: Leo Deng Date: Mon, 3 Aug 2015 20:03:32 +0800 Subject: [PATCH] fix doc tag typo --- dist/vue.js | 10 +++++----- src/transition/index.js | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dist/vue.js b/dist/vue.js index 4649af95a07..56691d73b20 100644 --- a/dist/vue.js +++ b/dist/vue.js @@ -5133,7 +5133,7 @@ return /******/ (function(modules) { // webpackBootstrap /** * Append with transition. * - * @oaram {Element} el + * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb] @@ -5148,7 +5148,7 @@ return /******/ (function(modules) { // webpackBootstrap /** * InsertBefore with transition. * - * @oaram {Element} el + * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb] @@ -5163,7 +5163,7 @@ return /******/ (function(modules) { // webpackBootstrap /** * Remove with transition. * - * @oaram {Element} el + * @param {Element} el * @param {Vue} vm * @param {Function} [cb] */ @@ -5178,7 +5178,7 @@ return /******/ (function(modules) { // webpackBootstrap * Remove by appending to another parent with transition. * This is only used in block operations. * - * @oaram {Element} el + * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb] @@ -5226,7 +5226,7 @@ return /******/ (function(modules) { // webpackBootstrap /** * Apply transitions with an operation callback. * - * @oaram {Element} el + * @param {Element} el * @param {Number} direction * 1: enter * -1: leave diff --git a/src/transition/index.js b/src/transition/index.js index 65598481b05..8f3c8caabee 100644 --- a/src/transition/index.js +++ b/src/transition/index.js @@ -3,7 +3,7 @@ var _ = require('../util') /** * Append with transition. * - * @oaram {Element} el + * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb] @@ -18,7 +18,7 @@ exports.append = function (el, target, vm, cb) { /** * InsertBefore with transition. * - * @oaram {Element} el + * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb] @@ -33,7 +33,7 @@ exports.before = function (el, target, vm, cb) { /** * Remove with transition. * - * @oaram {Element} el + * @param {Element} el * @param {Vue} vm * @param {Function} [cb] */ @@ -48,7 +48,7 @@ exports.remove = function (el, vm, cb) { * Remove by appending to another parent with transition. * This is only used in block operations. * - * @oaram {Element} el + * @param {Element} el * @param {Element} target * @param {Vue} vm * @param {Function} [cb] @@ -96,7 +96,7 @@ exports.blockRemove = function (start, end, vm) { /** * Apply transitions with an operation callback. * - * @oaram {Element} el + * @param {Element} el * @param {Number} direction * 1: enter * -1: leave