Skip to content

Commit

Permalink
docs: Fix typo in docs and code comments (#1431)
Browse files Browse the repository at this point in the history
  • Loading branch information
IAMOTZ committed Sep 17, 2024
1 parent 6137d43 commit 4e95b65
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/demos/markers/layers.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ markers.addEventListener('select-marker', ({ marker }) => {
}
});

// bellow is custom animation to make Rick's position change
// below is custom animation to make Rick's position change

const positions = [
[
Expand Down
4 changes: 2 additions & 2 deletions docs/plugins/gallery.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
- type: `GalleryItem[]`
- updatable: no, use `setItems()` method

The list of items, see bellow.
The list of items, see below.

#### `visibleOnLoad`

Expand Down Expand Up @@ -153,7 +153,7 @@ If you use a [custom navbar](../guide/navbar.md) you will need to manually add t

| variable | default | description |
| -------- | ------- | ----------- |
| $psv-gallery-breakpoint | 500px | Screen size bellow which the gallery is displayed full-height |
| $psv-gallery-breakpoint | 500px | Screen size below which the gallery is displayed full-height |
| $psv-gallery-padding | 15px | Padding of the container |
| $psv-gallery-border | 1px solid $psv-caption-text-color | Border between the gallery and the navbar |
| $psv-gallery-background | $psv-navbar-background | Background of the gallery |
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Size of the cone of the compass.
- default: `null`
- updatable: yes

Small dots visible on the map. See bellow. You can also use `setHotspots()` method.
Small dots visible on the map. See below. You can also use `setHotspots()` method.

#### `spotStyle`

Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/overlays.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Overlays seem very similar to image/video markers but serve different purposes:
- type: `OverlayConfig[]`
- updatable: no

The list of overlays, see bellow. Can be updated with various [methods](#methods).
The list of overlays, see below. Can be updated with various [methods](#methods).

#### `autoclear`

Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Size of the central pin.
- default: `null`
- updatable: yes

Markers visible on the map. See bellow. You can also use `setHotspots()` method.
Markers visible on the map. See below. You can also use `setHotspots()` method.

#### `spotStyle`

Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/virtual-tour.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Refer to the main [config page](../guide/config.md).

- type: `array`

Definition of the links of this node. [See bellow](#links).
Definition of the links of this node. [See below](#links).

#### `gps` (required in GPS mode)

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/data/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const DEFAULT_TRANSITION = 1500;
export const ANIMATION_MIN_DURATION = 500;

/**
* Number of pixels bellow which a mouse move will be considered as a click
* Number of pixels below which a mouse move will be considered as a click
*/
export const MOVE_THRESHOLD = 4;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { EquirectangularTileConfig, checkPanoramaConfig, getTileConfig, getTileC

/* the faces of the top and bottom rows are made of a single triangle (3 vertices)
* all other faces are made of two triangles (6 vertices)
* bellow is the indexing of each face vertices
* below is the indexing of each face vertices
*
* first row faces:
* ⋀
Expand Down

0 comments on commit 4e95b65

Please sign in to comment.