Skip to content

Commit d8fb334

Browse files
committed
Fix wording, fix line length, and fix bug in shellscript
Before, top-level .md files would be ignored.
1 parent 8caf7dd commit d8fb334

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/check_line_lengths.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [ "$MAX_LINE_LENGTH" == "" ]; then
1010
fi
1111

1212
if [ "$1" == "" ]; then
13-
files=( src/**/*.md )
13+
files=( src/**.md )
1414
else
1515
files=( "$@" )
1616
fi

src/stability.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ Furthermore this attribute is needed to mark an intrinsic as callable from
7272

7373
To stabilize a feature, follow these steps:
7474

75-
0. Ask a **@T-libs** to start an FCP on the tracking issue and wait for the FCP to complete (with `disposition-merge`).
75+
0. Ask a **@T-libs** member to start an FCP on the tracking issue and wait for
76+
the FCP to complete (with `disposition-merge`).
7677
1. Change `#[unstable]` to `#[stable(since = "version")]`.
7778
`version` should be the *current nightly*, i.e. stable+2. You can see which version is
7879
currently nightly [on Forge](https://forge.rust-lang.org/#current-release-versions).

0 commit comments

Comments
 (0)