Skip to content

Commit

Permalink
📝 Minor doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
flauwekeul committed Aug 7, 2023
1 parent 842d84c commit e8aba84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/api/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# API - v4.1.1
# API - v4.1.4

## Table of contents

Expand Down
6 changes: 3 additions & 3 deletions docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
NPM:

```bash
npm i honeycomb-grid@beta
npm i honeycomb-grid
```

Yarn:

```bash
yarn add honeycomb-grid@beta
yarn add honeycomb-grid
```

Or download the distribution from [jsdelivr](https://cdn.jsdelivr.net/npm/honeycomb-grid@beta) or [unpkg.com](https://unpkg.com/honeycomb-grid@beta).
Or download the distribution from [jsdelivr](https://cdn.jsdelivr.net/npm/honeycomb-grid) or [unpkg.com](https://unpkg.com/honeycomb-grid).

## Basic example

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/traversing-grids.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ A ring traverser can be created in two ways:

### [`spiral()`](/api/#spiral)

A has one required option: `radius`. But you may want to pass `start` as well. If you don't, like most traversers, it'll start where the previous traverser left off, or at `[0, 0]` if there is no previous traverser.
A spiral has one required option: `radius`. But you may want to pass `start` as well. If you don't it'll start where the previous traverser left off, or at `[0, 0]` if there is no previous traverser.

```typescript
const spiralFrom1_2 = spiral({ start: [1, 2], radius: 2 })
Expand Down

0 comments on commit e8aba84

Please sign in to comment.