Skip to content

Commit 62d0416

Browse files
committed
Merge pull request vuejs#1111 from myst729/dev
fix doc tag typo
2 parents f8361a0 + 7d5cb1e commit 62d0416

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

dist/vue.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5133,7 +5133,7 @@ return /******/ (function(modules) { // webpackBootstrap
51335133
/**
51345134
* Append with transition.
51355135
*
5136-
* @oaram {Element} el
5136+
* @param {Element} el
51375137
* @param {Element} target
51385138
* @param {Vue} vm
51395139
* @param {Function} [cb]
@@ -5148,7 +5148,7 @@ return /******/ (function(modules) { // webpackBootstrap
51485148
/**
51495149
* InsertBefore with transition.
51505150
*
5151-
* @oaram {Element} el
5151+
* @param {Element} el
51525152
* @param {Element} target
51535153
* @param {Vue} vm
51545154
* @param {Function} [cb]
@@ -5163,7 +5163,7 @@ return /******/ (function(modules) { // webpackBootstrap
51635163
/**
51645164
* Remove with transition.
51655165
*
5166-
* @oaram {Element} el
5166+
* @param {Element} el
51675167
* @param {Vue} vm
51685168
* @param {Function} [cb]
51695169
*/
@@ -5178,7 +5178,7 @@ return /******/ (function(modules) { // webpackBootstrap
51785178
* Remove by appending to another parent with transition.
51795179
* This is only used in block operations.
51805180
*
5181-
* @oaram {Element} el
5181+
* @param {Element} el
51825182
* @param {Element} target
51835183
* @param {Vue} vm
51845184
* @param {Function} [cb]
@@ -5226,7 +5226,7 @@ return /******/ (function(modules) { // webpackBootstrap
52265226
/**
52275227
* Apply transitions with an operation callback.
52285228
*
5229-
* @oaram {Element} el
5229+
* @param {Element} el
52305230
* @param {Number} direction
52315231
* 1: enter
52325232
* -1: leave

src/transition/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var _ = require('../util')
33
/**
44
* Append with transition.
55
*
6-
* @oaram {Element} el
6+
* @param {Element} el
77
* @param {Element} target
88
* @param {Vue} vm
99
* @param {Function} [cb]
@@ -18,7 +18,7 @@ exports.append = function (el, target, vm, cb) {
1818
/**
1919
* InsertBefore with transition.
2020
*
21-
* @oaram {Element} el
21+
* @param {Element} el
2222
* @param {Element} target
2323
* @param {Vue} vm
2424
* @param {Function} [cb]
@@ -33,7 +33,7 @@ exports.before = function (el, target, vm, cb) {
3333
/**
3434
* Remove with transition.
3535
*
36-
* @oaram {Element} el
36+
* @param {Element} el
3737
* @param {Vue} vm
3838
* @param {Function} [cb]
3939
*/
@@ -48,7 +48,7 @@ exports.remove = function (el, vm, cb) {
4848
* Remove by appending to another parent with transition.
4949
* This is only used in block operations.
5050
*
51-
* @oaram {Element} el
51+
* @param {Element} el
5252
* @param {Element} target
5353
* @param {Vue} vm
5454
* @param {Function} [cb]
@@ -96,7 +96,7 @@ exports.blockRemove = function (start, end, vm) {
9696
/**
9797
* Apply transitions with an operation callback.
9898
*
99-
* @oaram {Element} el
99+
* @param {Element} el
100100
* @param {Number} direction
101101
* 1: enter
102102
* -1: leave

0 commit comments

Comments
 (0)