Skip to content

fix doc tag typo #1111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 3, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix doc tag typo
  • Loading branch information
myst729 committed Aug 3, 2015
commit 7d5cb1e48e2f98f57bb4bb80c151458806afa216
10 changes: 5 additions & 5 deletions dist/vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand All @@ -5163,7 +5163,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* Remove with transition.
*
* @oaram {Element} el
* @param {Element} el
* @param {Vue} vm
* @param {Function} [cb]
*/
Expand All @@ -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]
Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/transition/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand All @@ -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]
*/
Expand All @@ -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]
Expand Down Expand Up @@ -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
Expand Down