Skip to content

Commit 9d38e98

Browse files
committed
Use - instead of * for unordered list
1 parent b4b540c commit 9d38e98

File tree

8 files changed

+55
-53
lines changed

8 files changed

+55
-53
lines changed

src/doc/style-guide/src/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ options.
3636

3737
### Indentation and line width
3838

39-
* Use spaces, not tabs.
40-
* Each level of indentation must be 4 spaces (that is, all indentation
39+
- Use spaces, not tabs.
40+
- Each level of indentation must be 4 spaces (that is, all indentation
4141
outside of string literals and comments must be a multiple of 4).
42-
* The maximum width for a line is 100 characters.
42+
- The maximum width for a line is 100 characters.
4343

4444
#### Block indent
4545

src/doc/style-guide/src/SUMMARY.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
[Introduction](README.md)
44

5-
* [Items](items.md)
6-
* [Statements](statements.md)
7-
* [Expressions](expressions.md)
8-
* [Types and Bounds](types.md)
9-
* [Other style advice](advice.md)
10-
* [`Cargo.toml` conventions](cargo.md)
11-
* [Guiding principles and rationale](principles.md)
12-
* [Nightly-only syntax](nightly.md)
5+
- [Items](items.md)
6+
- [Statements](statements.md)
7+
- [Expressions](expressions.md)
8+
- [Types and Bounds](types.md)
9+
- [Other style advice](advice.md)
10+
- [`Cargo.toml` conventions](cargo.md)
11+
- [Guiding principles and rationale](principles.md)
12+
- [Nightly-only syntax](nightly.md)

src/doc/style-guide/src/advice.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ if y {
1818

1919
## Names
2020

21-
* Types shall be `UpperCamelCase`,
22-
* Enum variants shall be `UpperCamelCase`,
23-
* Struct fields shall be `snake_case`,
24-
* Function and method names shall be `snake_case`,
25-
* Local variables shall be `snake_case`,
26-
* Macro names shall be `snake_case`,
27-
* Constants (`const`s and immutable `static`s) shall be `SCREAMING_SNAKE_CASE`.
28-
* When a name is forbidden because it is a reserved word (such as `crate`),
21+
- Types shall be `UpperCamelCase`,
22+
- Enum variants shall be `UpperCamelCase`,
23+
- Struct fields shall be `snake_case`,
24+
- Function and method names shall be `snake_case`,
25+
- Local variables shall be `snake_case`,
26+
- Macro names shall be `snake_case`,
27+
- Constants (`const`s and immutable `static`s) shall be `SCREAMING_SNAKE_CASE`.
28+
- When a name is forbidden because it is a reserved word (such as `crate`),
2929
either use a raw identifier (`r#crate`) or use a trailing underscore
3030
(`crate_`). Don't misspell the word (`krate`).
3131

src/doc/style-guide/src/expressions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ Write an empty block as `{}`.
6363

6464
Write a block on a single line if:
6565

66-
* it is either used in expression position (not statement position) or is an
66+
- it is either used in expression position (not statement position) or is an
6767
unsafe block in statement position,
68-
* it contains a single-line expression and no statements, and
69-
* it contains no comments
68+
- it contains a single-line expression and no statements, and
69+
- it contains no comments
7070

7171
For a single-line block, put spaces after the opening brace and before the
7272
closing brace.

src/doc/style-guide/src/items.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -478,9 +478,9 @@ example, `a::*` comes before `b::a` but `a::b` comes before `a::*`. E.g.,
478478

479479
Tools must make the following normalisations, recursively:
480480

481-
* `use a::self;` -> `use a;`
482-
* `use a::{};` -> (nothing)
483-
* `use a::{b};` -> `use a::b;`
481+
- `use a::self;` -> `use a;`
482+
- `use a::{};` -> (nothing)
483+
- `use a::{b};` -> `use a::b;`
484484

485485
Tools must not otherwise merge or un-merge import lists or adjust glob imports
486486
(without an explicit option).

src/doc/style-guide/src/nightly.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Nightly
2+
13
This chapter documents style and formatting for nightly-only syntax. The rest of the style guide documents style for stable Rust syntax; nightly syntax only appears in this chapter. Each section here includes the name of the feature gate, so that searches (e.g. `git grep`) for a nightly feature in the Rust repository also turn up the style guide section.
24

35
Style and formatting for nightly-only syntax should be removed from this chapter and integrated into the appropriate sections of the style guide at the time of stabilization.

src/doc/style-guide/src/principles.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@
33
When deciding on style guidelines, the style team follows these guiding
44
principles (in rough priority order):
55

6-
* readability
7-
* scan-ability
8-
* avoiding misleading formatting
9-
* accessibility - readable and editable by users using the widest
6+
- readability
7+
- scan-ability
8+
- avoiding misleading formatting
9+
- accessibility - readable and editable by users using the widest
1010
variety of hardware, including non-visual accessibility interfaces
11-
* readability of code in contexts without syntax highlighting or IDE
11+
- readability of code in contexts without syntax highlighting or IDE
1212
assistance, such as rustc error messages, diffs, grep, and other
1313
plain-text contexts
1414

15-
* aesthetics
16-
* sense of 'beauty'
17-
* consistent with other languages/tools
15+
- aesthetics
16+
- sense of 'beauty'
17+
- consistent with other languages/tools
1818

19-
* specifics
20-
* compatibility with version control practices - preserving diffs,
19+
- specifics
20+
- compatibility with version control practices - preserving diffs,
2121
merge-friendliness, etc.
22-
* preventing rightward drift
23-
* minimising vertical space
22+
- preventing rightward drift
23+
- minimising vertical space
2424

25-
* application
26-
* ease of manual application
27-
* ease of implementation (in `rustfmt`, and in other tools/editors/code generators)
28-
* internal consistency
29-
* simplicity of formatting rules
25+
- application
26+
- ease of manual application
27+
- ease of implementation (in `rustfmt`, and in other tools/editors/code generators)
28+
- internal consistency
29+
- simplicity of formatting rules

src/doc/style-guide/src/types.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
## Single line formatting
44

5-
* `[T]` no spaces
6-
* `[T; expr]`, e.g., `[u32; 42]`, `[Vec<Foo>; 10 * 2 + foo()]` (space after colon, no spaces around square brackets)
7-
* `*const T`, `*mut T` (no space after `*`, space before type)
8-
* `&'a T`, `&T`, `&'a mut T`, `&mut T` (no space after `&`, single spaces separating other words)
9-
* `unsafe extern "C" fn<'a, 'b, 'c>(T, U, V) -> W` or `fn()` (single spaces around keywords and sigils, and after commas, no trailing commas, no spaces around brackets)
10-
* `!` gets treated like any other type name, `Name`
11-
* `(A, B, C, D)` (spaces after commas, no spaces around parens, no trailing comma unless it is a one-tuple)
12-
* `<Baz<T> as SomeTrait>::Foo::Bar` or `Foo::Bar` or `::Foo::Bar` (no spaces around `::` or angle brackets, single spaces around `as`)
13-
* `Foo::Bar<T, U, V>` (spaces after commas, no trailing comma, no spaces around angle brackets)
14-
* `T + T + T` (single spaces between types, and `+`).
15-
* `impl T + T + T` (single spaces between keyword, types, and `+`).
5+
- `[T]` no spaces
6+
- `[T; expr]`, e.g., `[u32; 42]`, `[Vec<Foo>; 10 * 2 + foo()]` (space after colon, no spaces around square brackets)
7+
- `*const T`, `*mut T` (no space after `*`, space before type)
8+
- `&'a T`, `&T`, `&'a mut T`, `&mut T` (no space after `&`, single spaces separating other words)
9+
- `unsafe extern "C" fn<'a, 'b, 'c>(T, U, V) -> W` or `fn()` (single spaces around keywords and sigils, and after commas, no trailing commas, no spaces around brackets)
10+
- `!` gets treated like any other type name, `Name`
11+
- `(A, B, C, D)` (spaces after commas, no spaces around parens, no trailing comma unless it is a one-tuple)
12+
- `<Baz<T> as SomeTrait>::Foo::Bar` or `Foo::Bar` or `::Foo::Bar` (no spaces around `::` or angle brackets, single spaces around `as`)
13+
- `Foo::Bar<T, U, V>` (spaces after commas, no trailing comma, no spaces around angle brackets)
14+
- `T + T + T` (single spaces between types, and `+`).
15+
- `impl T + T + T` (single spaces between keyword, types, and `+`).
1616

1717
Do not put space around parentheses used in types, e.g., `(Foo)`
1818

0 commit comments

Comments
 (0)