Skip to content

Commit 55f913c

Browse files
committed
capitalize "zulip"
1 parent 4e18796 commit 55f913c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/doc/rustc-dev-guide/src/about-this-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ You might also find the following sites useful:
7373
- [compiler-team] -- the home-base for the Rust compiler team, with description
7474
of the team procedures, active working groups, and the team calendar.
7575
- [std-dev-guide] -- a similar guide for developing the standard library.
76-
- [The t-compiler zulip][z]
76+
- [The t-compiler Zulip][z]
7777
- The [Rust Internals forum][rif], a place to ask questions and
7878
discuss Rust's internals
7979
- The [Rust reference][rr], even though it doesn't specifically talk about

src/doc/rustc-dev-guide/src/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Example of things that might require MCPs include major refactorings, changes
7474
to important types, or important changes to how the compiler does something, or
7575
smaller user-facing changes.
7676

77-
**When in doubt, ask on [zulip]. It would be a shame to put a lot of work
77+
**When in doubt, ask on [Zulip]. It would be a shame to put a lot of work
7878
into a PR that ends up not getting merged!** [See this document][mcpinfo] for
7979
more info on MCPs.
8080

@@ -126,7 +126,7 @@ when contributing to Rust under [the git section](./git.md).
126126
> from), and work with the compiler team to see if we can help you **break down a large potentially
127127
> unreviewable PR into a series of smaller more individually reviewable PRs**.
128128
>
129-
> You can communicate with the compiler team by creating a [#t-compiler thread on zulip][t-compiler]
129+
> You can communicate with the compiler team by creating a [#t-compiler thread on Zulip][t-compiler]
130130
> to discuss your proposed changes.
131131
>
132132
> Communicating with the compiler team beforehand helps in several ways:

src/doc/rustc-dev-guide/src/rustdoc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ This comes with several caveats: in particular, rustdoc *cannot* run any parts o
107107
require type-checking bodies; for example it cannot generate `.rlib` files or run most lints.
108108
We want to move away from this model eventually, but we need some alternative for
109109
[the people using it][async-std]; see [various][zulip stop accepting broken code]
110-
[previous][rustdoc meeting 2024-07-08] [zulip][compiler meeting 2023-01-26] [discussion][notriddle rfc].
110+
[previous][rustdoc meeting 2024-07-08] [Zulip][compiler meeting 2023-01-26] [discussion][notriddle rfc].
111111
For examples of code that breaks if this hack is removed, see
112112
[`tests/rustdoc-ui/error-in-impl-trait`].
113113

src/doc/rustc-dev-guide/src/solve/caching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ We can implement this optimization in the future.
106106
[`provisional_result`]: https://github.com/rust-lang/rust/blob/7606c13961ddc1174b70638e934df0439b7dc515/compiler/rustc_trait_selection/src/solve/search_graph.rs#L57
107107
[initial-prov-result]: https://github.com/rust-lang/rust/blob/7606c13961ddc1174b70638e934df0439b7dc515/compiler/rustc_trait_selection/src/solve/search_graph.rs#L366-L370
108108
[fixpoint]: https://github.com/rust-lang/rust/blob/7606c13961ddc1174b70638e934df0439b7dc515/compiler/rustc_trait_selection/src/solve/search_graph.rs#L425-L446
109-
[^2]: summarizing the relevant [zulip thread]
109+
[^2]: summarizing the relevant [Zulip thread]
110110

111111
[zulip thread]: https://rust-lang.zulipchat.com/#narrow/stream/364551-t-types.2Ftrait-system-refactor/topic/global.20cache
112112
[unstable-result-ex]: https://github.com/rust-lang/rust/blob/7606c13961ddc1174b70638e934df0439b7dc515/tests/ui/traits/next-solver/cycles/coinduction/incompleteness-unstable-result.rs#L4-L16

src/doc/rustc-dev-guide/src/solve/the-solver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ fails.
7171
## Learning more
7272

7373
The solver should be fairly self-contained. I hope that the above information provides a
74-
good foundation when looking at the code itself. Please reach out on zulip if you get stuck
74+
good foundation when looking at the code itself. Please reach out on Zulip if you get stuck
7575
while doing so or there are some quirks and design decisions which were unclear and deserve
7676
better comments or should be mentioned here.

src/doc/rustc-dev-guide/src/typing_parameter_envs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ In the large majority of cases, when a `ParamEnv` is required it either already
8282
- In the next-gen trait solver all `Goal`s have a [`param_env` field][goal_param_env] specifying what environment to prove the goal in
8383
- When editing an existing [`TypeRelation`][typerelation] if it implements [`PredicateEmittingRelation`][predicate_emitting_relation] then a [`param_env` method][typerelation_param_env] will be available.
8484

85-
If you aren't sure if there's a `ParamEnv` in scope somewhere that can be used it can be worth opening a thread in the [`#t-compiler/help`][compiler_help] zulip channel where someone may be able to point out where a `ParamEnv` can be acquired from.
85+
If you aren't sure if there's a `ParamEnv` in scope somewhere that can be used it can be worth opening a thread in the [`#t-compiler/help`][compiler_help] Zulip channel where someone may be able to point out where a `ParamEnv` can be acquired from.
8686

8787
Manually constructing a `ParamEnv` is typically only needed at the start of some kind of top level analysis (e.g. hir typeck or borrow checking). In such cases there are three ways it can be done:
8888
- Calling the [`tcx.param_env(def_id)` query][param_env_query] which returns the environment associated with a given definition.

0 commit comments

Comments
 (0)