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

docs(Swiper): fix typo in slidesPerView value #2945

Merged
merged 1 commit into from
May 1, 2023
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
2 changes: 1 addition & 1 deletion docs/angular/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ Swiper options should be provided as individual properties directly on the `<swi
Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` options set:

```html
<ion-slides [options]="{ slidesPerView: true, loop: true }">
<ion-slides [options]="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 3</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down
2 changes: 1 addition & 1 deletion docs/vue/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` opti

```html
<template>
<ion-slides :options="{ slidesPerView: true, loop: true }">
<ion-slides :options="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 2</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-v6/angular/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Swiper options should be provided as individual properties directly on the `<swi
Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` options set:

```html
<ion-slides [options]="{ slidesPerView: true, loop: true }">
<ion-slides [options]="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 3</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down
2 changes: 1 addition & 1 deletion versioned_docs/version-v6/vue/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Let's say in an app with `ion-slides` we had the `slidesPerView` and `loop` opti

```html
<template>
<ion-slides :options="{ slidesPerView: true, loop: true }">
<ion-slides :options="{ slidesPerView: 3, loop: true }">
<ion-slide>Slide 1</ion-slide>
<ion-slide>Slide 3</ion-slide>
<ion-slide>Slide 3</ion-slide>
Expand Down