Skip to content

Commit c10c10d

Browse files
Merge pull request #1279 from jyn514/names
update my name
2 parents ba4cbf1 + 2d51fe4 commit c10c10d

14 files changed

+18
-17
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

posts/2020-03-15-docs-rs-opt-into-fewer-targets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "docs.rs now allows you to choose your build targets"
4-
author: Joshua Nelson
4+
author: Jynn Nelson
55
team: the docs.rs team <https://www.rust-lang.org/governance/teams/dev-tools#docs-rs>
66
---
77

posts/2020-11-27-Rustup-1.23.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Thanks to all the contributors who made rustup 1.23.0 possible!
101101
- Jake Goulding
102102
- Jens Reidel
103103
- Joshua M. Clulow
104-
- Joshua Nelson
104+
- Jynn Nelson
105105
- Jubilee Young
106106
- Leigh McCulloch
107107
- Lzu Tao

posts/2021-04-27-Rustup-1.24.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Thanks to all the contributors who made rustup 1.24.0 possible!
8181
- Gareth Hubball
8282
- Gurkenglas
8383
- Jakub Stasiak
84-
- Joshua Nelson
84+
- Jynn Nelson
8585
- Jubilee (workingjubilee)
8686
- kellda
8787
- Michael Cooper

posts/2021-04-29-Rustup-1.24.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Thanks again to all the contributors who made rustup 1.24.0 and 1.24.1 possible!
6464
- Gareth Hubball
6565
- Gurkenglas
6666
- Jakub Stasiak
67-
- Joshua Nelson
67+
- Jynn Nelson
6868
- Jubilee (workingjubilee)
6969
- kellda
7070
- Michael Cooper

posts/2021-05-17-Rustup-1.24.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Thanks again to all the contributors who made rustup 1.24.2 possible!
5353
- Daniel Silverstone
5454
- João Marcos Bezerra
5555
- Josh Rotenberg
56-
- Joshua Nelson
56+
- Jynn Nelson
5757
- Martijn Gribnau
5858
- pierwill
5959
- Robert Collins

posts/2022-07-11-Rustup-1.25.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Thanks again to all the contributors who made rustup 1.25.0 possible!
6464
- Robert Collins (rbtcollins)
6565
- Alan Somers (asomers)
6666
- Brennan Vincent (umanwizard)
67-
- Joshua Nelson (jyn514)
67+
- Jynn Nelson (jyn514)
6868
- Eric Huss (ehuss)
6969
- Will Bush (willbush)
7070
- Thad Guidry (thadguidry)

posts/2022-07-12-Rustup-1.25.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@ Thanks again to all the contributors who made rustup 1.25.1 possible!
8282

8383
- Daniel Silverstone (kinnison)
8484
- Robert Collins (rbtcollins)
85-
- Joshua Nelson (jyn514)
85+
- Jynn Nelson (jyn514)
8686
- Pietro Albini (pietroalbini)

posts/2023-04-25-Rustup-1.26.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Thanks again to all the contributors who made rustup 1.26.0 possible!
7777
- Alexander (Alovchin91)
7878
- Daniel Brotsky (brotskydotcom)
7979
- zohnannor (zohnannor)
80-
- Joshua Nelson (jyn514)
80+
- Jynn Nelson (jyn514)
8181
- Prikshit Gautam (gautamprikshit1)
8282
- Dylan Thacker-Smith (dylanahsmith)
8383
- Jan David (jdno)

posts/inside-rust/2020-08-30-changes-to-x-py-defaults.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Changes to x.py defaults"
4-
author: Joshua Nelson
4+
author: Jynn Nelson
55
team: the compiler team <https://www.rust-lang.org/governance/teams/compiler>
66
---
77

posts/inside-rust/2020-09-17-stabilizing-intra-doc-links.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
layout: post
22
title: "Intra-doc links close to stabilization"
3-
author: Manish Goregaokar and Joshua Nelson
3+
author: Manish Goregaokar and Jynn Nelson
44
team: the rustdoc team <https://www.rust-lang.org/governance/teams/dev-tools#rustdoc>
55
---
66

@@ -48,7 +48,7 @@ At the time, persisting local scope information so that `rustdoc` invocations on
4848

4949
## What changed?
5050

51-
Early in June, I (Joshua) got tired of not being able to use intra-doc links. I started investigating the issue to see if there was a fix. It was marked as [`E-hard`], so I wasn't expecting miracles, but I thought I might at least make a start on it.
51+
Early in June, I (Jynn) got tired of not being able to use intra-doc links. I started investigating the issue to see if there was a fix. It was marked as [`E-hard`], so I wasn't expecting miracles, but I thought I might at least make a start on it.
5252

5353
It turns out there was a simple problem with the implementation - it assumed
5454
all items were in the current crate! Clearly, that's not always the case. [The fix][resolve-cross-crate] turned out to be easy enough that I could implement it as my first contribution to rustdoc.
@@ -66,7 +66,7 @@ fn main() {
6666
}
6767
```
6868
```
69-
thread 'rustc' panicked at 'called `Option::unwrap()` on a `None` value', /home/joshua/src/rust/src/librustc_hir/definitions.rs:358:9
69+
thread 'rustc' panicked at 'called `Option::unwrap()` on a `None` value', /home/jyn/src/rust/src/librustc_hir/definitions.rs:358:9
7070
```
7171

7272
## HirIds and DefIds and trees, oh my!

posts/inside-rust/2020-11-15-Using-rustc_codegen_cranelift.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Using rustc_codegen_cranelift for debug builds"
4-
author: Joshua Nelson
4+
author: Jynn Nelson
55
team: The Compiler Team <https://www.rust-lang.org/governance/teams/compiler>
66
---
77

@@ -80,7 +80,7 @@ EOF
8080
$ ../rustc_codegen_cranelift/build/cargo.sh build
8181
Finished dev [unoptimized + debuginfo] target(s) in 7.98s
8282
$ cargo +nightly-2020-10-31 build
83-
Compiling cargo v0.50.0 (/home/joshua/cargo)
83+
Compiling cargo v0.50.0 (/home/jyn/cargo)
8484
Finished dev [unoptimized + debuginfo] target(s) in 5.48s
8585
```
8686

posts/inside-rust/2021-01-15-rustdoc-performance-improvements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Rustdoc performance improvements"
4-
author: Joshua Nelson and Guillaume Gomez
4+
author: Jynn Nelson and Guillaume Gomez
55
team: The Rustdoc Team <https://www.rust-lang.org/governance/teams/dev-tools#rustdoc>
66
---
77

posts/inside-rust/2021-01-19-changes-to-rustdoc-team.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Recently, there have been a lot of improvements in rustdoc. It was possible than
1010

1111
## Adding a new team leader
1212

13-
[Joshua](https://github.com/jyn514) has been helping me **a lot** on the leading parts by tagging issues and mentoring newcomers. But at the same time, he initiated great changes in the rustdoc codebase that led to huge performance improvements, he finished the "intra doc link" features which is now stable after years of instability (more information [here](https://doc.rust-lang.org/rustdoc/write-documentation/linking-to-items-by-name.html)). He also did multiple additional things but let's stop the listing here. :)
13+
[Jynn](https://github.com/jyn514) has been helping me **a lot** on the leading parts by tagging issues and mentoring newcomers. But at the same time, they initiated great changes in the rustdoc codebase that led to huge performance improvements, they finished the "intra doc link" features which is now stable after years of instability (more information [here](https://doc.rust-lang.org/rustdoc/write-documentation/linking-to-items-by-name.html)). They also did multiple additional things but let's stop the listing here. :)
1414

15-
Overall, he's been an enormous help and making him co-lead is just making official everything's he's been doing since he joined the rustdoc team (and even before!). I'm glad to have him on the team and as co-lead.
15+
Overall, they've been an enormous help and making them co-lead is just making official everything's they've been doing since they joined the rustdoc team (and even before!). I'm glad to have them on the team and as co-lead.
1616

1717
## Membership Changes
1818

0 commit comments

Comments
 (0)