Merge pull request #112 from kumakichi/master

fix typo
This commit is contained in:
Dhghomon 2021-02-04 18:36:14 +09:00 committed by GitHub
commit 72de6af58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13163,7 +13163,7 @@ But it won't print if we give it something with spaces, commas, etc. It will thi
This is where macros start to get difficult.
To give a macro more than one item at a time, we have to use a different syntax. Instead of `$input`, it will be `$($input1),+`. This means zero or more (this is what * means), separated by a comma. If you want one or more, use `+` instead of `*`.
To give a macro more than one item at a time, we have to use a different syntax. Instead of `$input`, it will be `$($input1),*`. This means zero or more (this is what * means), separated by a comma. If you want one or more, use `+` instead of `*`.
Now our macro looks like this: