From 1be23b5a7086a02a525b2e5747cf136808c26440 Mon Sep 17 00:00:00 2001 From: CheesyGamer77 <43181046+CheesyGamer77@users.noreply.github.com> Date: Tue, 3 May 2022 18:04:17 -0400 Subject: [PATCH] chore: remove extra spaces in image-hash arg table --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9860ce5..6bac474 100644 --- a/README.md +++ b/README.md @@ -70,12 +70,12 @@ imageHash(string|object, int, bool, function) ### Image-Hash Arguments -| Argument | Type | Description | Mandatory | Example | -| -------- | -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------- | --------- | -| location | `object` or `string` | A [RequestJS Object](https://github.com/request/request#requestoptions-callback), `Buffer` object (See input types below for more details), or `String` with a valid url or file location | Yes | see above | -| bits | `int` | The number of bits in a row. The more bits, the more unique the hash. | Yes | 8 | -| precise | `bool` | Whether a precision algorithm is used. `true` Precise but slower, non-overlapping blocks. `false` Quick and crude, non-overlapping blocks. Method 2 is recommended as a good tradeoff between speed and good matches on any image size. The quick ones are only advisable when the image width and height are an even multiple of the number of blocks used. | Yes | `true` | -| callback | `function` | A function with `error` and `data` arguments - see below | +| Argument | Type | Description | Mandatory | Example | +| -------- | ---- | ----------- | --------- | ------- | +| location | `object` or `string` | A [RequestJS Object](https://github.com/request/request#requestoptions-callback), `Buffer` object (See input types below for more details), or `String` with a valid url or file location | Yes | see above | +| bits | `int` | The number of bits in a row. The more bits, the more unique the hash. | Yes | 8 | +| precise | `bool` | Whether a precision algorithm is used. `true` Precise but slower, non-overlapping blocks. `false` Quick and crude, non-overlapping blocks. Method 2 is recommended as a good tradeoff between speed and good matches on any image size. The quick ones are only advisable when the image width and height are an even multiple of the number of blocks used. | Yes | `true` | +| callback | `function` | A function with `error` and `data` arguments - see below | #### Location Object Types