Skip to content

Commit

Permalink
docs(Swiper): fix typo in slidesPerView value (#2945)
Browse files Browse the repository at this point in the history
  • Loading branch information
averyjohnston authored May 1, 2023
1 parent 53e69e6 commit ea89c02
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

1 comment on commit ea89c02

@vercel
Copy link

@vercel vercel bot commented on ea89c02 May 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ionic-docs – ./

ionic-docs-ionic1.vercel.app
ionic-docs-git-main-ionic1.vercel.app
ionic-docs-gqykycf8t.vercel.app

Please sign in to comment.