Skip to content

[skip changelog] Correct library+sketch specifications re: spaces in folder name #1194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/library-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ may be added as needed to future revisions.
#### Library Root folder

The library root folder name must start with a basic letter (A-Z or a-z) or number (0-9), followed by basic letters,
numbers, spaces ( ), underscores (\_), dots (.) and dashes (-). The maximum length is 63 characters.
numbers, underscores (\_), dots (.) and dashes (-). The maximum length is 63 characters.

#### Source code

Expand Down
4 changes: 2 additions & 2 deletions docs/sketch-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Because many Arduino sketches only contain a single .ino file, it's easy to thin
it is the folder that is the sketch. The reason is that sketches may consist of multiple code files and the folder is
what groups those files into a single program.

<!-- prettier-ignore -->
The sketch root folder name must start with a basic letter (`A`-`Z` or `a`-`z`) or number (`0`-`9`), followed by basic letters, numbers, spaces (` `), underscores (`_`), dots (`.`) and dashes (`-`). The maximum length is 63 characters.
The sketch root folder name must start with a basic letter (`A`-`Z` or `a`-`z`) or number (`0`-`9`), followed by basic
letters, numbers, underscores (`_`), dots (`.`) and dashes (`-`). The maximum length is 63 characters.

Support for sketch folder names starting with a number was added in Arduino IDE 1.8.4.

Expand Down