From e8aba84d74b871f6fecc94dbd707782b52d44bca Mon Sep 17 00:00:00 2001 From: Abbe Keultjes Date: Mon, 7 Aug 2023 21:25:16 +0200 Subject: [PATCH] :memo: Minor doc fixes --- docs/api/index.md | 2 +- docs/guide/getting-started.md | 6 +++--- docs/guide/traversing-grids.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/api/index.md b/docs/api/index.md index 98238a18..423c349c 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1,4 +1,4 @@ -# API - v4.1.1 +# API - v4.1.4 ## Table of contents diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 8b11a87f..f7f79003 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -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 diff --git a/docs/guide/traversing-grids.md b/docs/guide/traversing-grids.md index dbf02ab4..c81e7ab4 100644 --- a/docs/guide/traversing-grids.md +++ b/docs/guide/traversing-grids.md @@ -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 })