Skip to content

Commit 618181c

Browse files
committed
Alphabetically sort working groups
1 parent 138d63d commit 618181c

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

content/_index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,21 @@ active working groups are listed below:
6262
Name | Status | Short Description | Zulip Stream
6363
---- | ------ | ----------------- | ------------
6464
[Async-await Implementation](working-groups/async-await/) | Active | Implementing async-await | [#t-compiler/wg-async-await][async-await_stream]
65+
[Diagnostics](working-groups/diagnostics/) | Active | Use crates.io crates for diagnostics rendering and make emitting diagnostics nicer. | [#t-compiler/wg-diagnostics][diagnostics_stream]
66+
[Learning](working-groups/learning/) | Active | Make the compiler easier to learn by ensuring that rustc-dev-guide and api docs are "complete" | [#t-compiler/wg-learning][learning_stream]
6567
[LLVM](working-groups/llvm/) | Incubating | Working with LLVM upstream to represent Rust in its development | [#t-compiler/wg-llvm][llvm_stream]
66-
[Self-Profile](working-groups/self-profile/) | Active | Improving the `-Z self-profile` feature | [#t-compiler/wg-self-profile][self-profile_stream]
67-
[RFC 2229](working-groups/rfc-2229/) | Paused | Make a closure capture individual fields of the variable rather than the entire composite variable | [#t-compiler/wg-rfc-2229][rfc-2229-stream]
68-
[RLS 2.0](working-groups/rls-2.0/) | Active | Experimenting with a new compiler architecture tailored for IDEs | [#t-compiler/wg-rls2.0][rls20_stream]
6968
[Meta](working-groups/meta/) | Active | How compiler team organizes itself | [#t-compiler/wg-meta][meta_stream]
69+
[MIR Optimizations](working-groups/mir-opt/) | Active | Write MIR optimizations and refactor the MIR to be more optimizable. | [#t-compiler/wg-mir-opt][mir-opt-stream]
7070
[Non-Lexical Lifetimes (NLL)](working-groups/nll/) | Retired | Implementing non-lexical lifetimes | [#t-compiler/wg-nll][nll_stream]
71-
[Traits](working-groups/traits/) | Active | Improving the trait-system design + implementation | [#t-compiler/wg-traits][traits_stream]
7271
[Parallel-rustc](working-groups/parallel-rustc/) | Active | Making parallel compilation the default for rustc | [#t-compiler/wg-parallel-rustc][parallel-rustc_stream]
73-
[MIR Optimizations](working-groups/mir-opt/) | Active | Write MIR optimizations and refactor the MIR to be more optimizable. | [#t-compiler/wg-mir-opt][mir-opt-stream]
74-
[Rustc pipelining](working-groups/pipelining/) | Retired | Enable Cargo to invoke rustc in a pipelined fashion, speeding up crate graph compiles. | [#t-compiler/wg-pipelining][pipelining-stream]
7572
[Polonius](working-groups/polonius/) | Active | Exploring the integration of the "NLL 2.0"-like ["Polonius analysis"][Polonius] into rustc | [#t-compiler/wg-polonius][polonius_stream]
76-
[Learning](working-groups/learning/) | Active | Make the compiler easier to learn by ensuring that rustc-dev-guide and api docs are "complete" | [#t-compiler/wg-learning][learning_stream]
77-
[Diagnostics](working-groups/diagnostics/) | Active | Use crates.io crates for diagnostics rendering and make emitting diagnostics nicer. | [#t-compiler/wg-diagnostics][diagnostics_stream]
7873
[Polymorphization](working-groups/polymorphization/) | Active | Implement an analysis to detect when functions can remain polymorphic during code generation. | [#t-compiler/wg-polymorphization][polymorphization_stream]
7974
[Profile-Guided Optimization](working-groups/pgo/) | Retired | Implementing profile-guided optimization for rustc | [#t-compiler/wg-profile-guided-optimization][pgo_stream]
75+
[RFC 2229](working-groups/rfc-2229/) | Paused | Make a closure capture individual fields of the variable rather than the entire composite variable | [#t-compiler/wg-rfc-2229][rfc-2229-stream]
76+
[RLS 2.0](working-groups/rls-2.0/) | Active | Experimenting with a new compiler architecture tailored for IDEs | [#t-compiler/wg-rls2.0][rls20_stream]
77+
[Rustc pipelining](working-groups/pipelining/) | Retired | Enable Cargo to invoke rustc in a pipelined fashion, speeding up crate graph compiles. | [#t-compiler/wg-pipelining][pipelining-stream]
78+
[Self-Profile](working-groups/self-profile/) | Active | Improving the `-Z self-profile` feature | [#t-compiler/wg-self-profile][self-profile_stream]
79+
[Traits](working-groups/traits/) | Active | Improving the trait-system design + implementation | [#t-compiler/wg-traits][traits_stream]
8080

8181
[Weekly, in Zulip]: #meeting-calendar
8282
[nll_stream]: https://rust-lang.zulipchat.com/#narrow/stream/122657-t-compiler.2Fwg-nll

layouts/shortcodes/checkin-schedule.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919

2020
var wgs = [
2121
"Async/Await",
22+
"Diagnostics",
23+
"Learning",
2224
"LLVM",
23-
"Self-Profile",
24-
"RLS 2.0",
2525
"Meta",
26-
"Traits",
27-
"Parallel Rustc",
2826
"MIR Optimizations",
27+
"Parallel Rustc",
2928
"Polonius",
30-
"Learning",
31-
"Diagnostics",
3229
"Polymorphization",
30+
"RLS 2.0",
31+
"Self-Profile",
32+
"Traits",
3333
];
3434
var count = wgs.length % 2 === 0 ? wgs.length : wgs.length + 1;
3535

0 commit comments

Comments
 (0)