Skip to content

Commit

Permalink
Updated shoe size doc string
Browse files Browse the repository at this point in the history
to make it clear that the size should be either 'US M 9.5' or 'US 12' or
'W 10' and not 'US M 9.5 / W 11' (which isn't a valid size).
  • Loading branch information
markf94 committed Jan 8, 2021
1 parent d9ebe66 commit f8a3914
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ npm install
<!-- USAGE EXAMPLES -->
## Usage

1. You'll need to reate a .env file and add the following variables.
1. You'll need to create a .env file and add the following variables.

```sh
[email protected]
Expand Down
7 changes: 4 additions & 3 deletions bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ const runSnkrBot = () => {
// cv_code: 3-digit credit card validation code for the card saved to your Nike.com account
const cv_code = process.env.CVC

// size: the shoe size, as you see in the table of sizes on a product page, e.g., 'M 9 / W 10.5'
const size = 'US M 9.5 / W 11';
// size: the shoe size, as you see in the table of sizes on a product page, e.g., 'M 9', 'US 12' or 'W 10.5'
// make sure to double check some other sneaker size charts on Nike SNKRS Canada to get this right
const size = 'US 11';

/* date: the date and time the shoe is being dropped at. Months will begin at zero so be sure to subratct one from any month.
Date format should be as follows: (year, month - 1, day, hour, minute, seconds)
Date format should be as follows: (year, month - 1, day, hour, minute, seconds)
*/
const date = new Date(2020, 4, 19, 23, 48, 30);

Expand Down

0 comments on commit f8a3914

Please sign in to comment.