Skip to content
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

fix: typo #4609

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions src/js/common/utilsFP.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export function addAnimation(element){
}

/**
* Retuns `up` or `down` depending on the scrolling movement to reach its destination
* Returns `up` or `down` depending on the scrolling movement to reach its destination
* from the current section.
*/
export function getYmovement(activeSection, destiny){
Expand Down Expand Up @@ -123,4 +123,4 @@ export function getTransforms(translate3d){
'-ms-transform':translate3d,
'transform': translate3d
};
}
}
2 changes: 1 addition & 1 deletion src/js/slides/landscapeScroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function performHorizontalMove(slides, v, fireCallback){
}

/**
* Retuns `right` or `left` depending on the scrolling movement to reach its destination
* Returns `right` or `left` depending on the scrolling movement to reach its destination
* from the current slide.
*/
function getXmovement(fromIndex, toIndex){
Expand Down