Skip to content

Commit 260bfe0

Browse files
lilyballjyn514
authored andcommitted
Update all references to my name
1 parent c22ffd7 commit 260bfe0

4 files changed

+11
-11
lines changed

text/0089-loadable-lints.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Allow users to load custom lints into `rustc`, similar to loadable syntax extens
1111
There are many possibilities for user-defined static checking:
1212

1313
* Enforcing correct usage of Servo's [JS-managed pointers](https://github.com/mozilla/servo/blob/master/src/components/script/dom/bindings/js.rs)
14-
* kballard's use case: checking that `rust-lua` functions which call `longjmp` never have destructors on stack variables
14+
* lilyball's use case: checking that `rust-lua` functions which call `longjmp` never have destructors on stack variables
1515
* Enforcing a company or project style guide
1616
* Detecting common misuses of a library, e.g. expensive or non-idiomatic constructs
1717
* In cryptographic code, annotating which variables contain secrets and then forbidding their use in variable-time operations or memory addressing

text/0236-error-conventions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ comment for more detail.
228228
There are numerous possible suffixes for a `Result`-producing variant:
229229

230230
* `_catch`, as proposed above. As
231-
[@kballard points out](https://github.com/rust-lang/rfcs/pull/236#issuecomment-55344336),
231+
[@lilyball points out](https://github.com/rust-lang/rfcs/pull/236#issuecomment-55344336),
232232
this name connotes exception handling, which could be considered
233233
misleading. However, since it effectively prevents further unwinding, catching
234234
an exception may indeed be the right analogy.

text/0240-unsafe-api-location.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ and methods:
8888

8989
The unsafe methods and static functions for a given type should be placed in
9090
their own `impl` block, at the end of the module defining the type; this will
91-
ensure that they are grouped together in rustdoc. (Thanks @kballard for the
91+
ensure that they are grouped together in rustdoc. (Thanks @lilyball for the
9292
suggestion.)
9393

9494
# Drawbacks
@@ -125,7 +125,7 @@ There are a few alternatives:
125125
them `unsafe`), and given that rustdoc could easily provide API grouping, it's
126126
unclear exactly what the benefit is.
127127

128-
* ([Suggested by @kballard](https://github.com/rust-lang/rfcs/pull/240#issuecomment-55635468)):
128+
* ([Suggested by @lilyball](https://github.com/rust-lang/rfcs/pull/240#issuecomment-55635468)):
129129

130130
> Use `raw` for functions that construct a value of the type without checking
131131
> for one or more invariants.
@@ -140,7 +140,7 @@ There are a few alternatives:
140140
some_string.slice_unchecked(start, end)
141141
```
142142

143-
* Another suggestion by @kballard is to keep the basic structure of `raw`
143+
* Another suggestion by @lilyball is to keep the basic structure of `raw`
144144
submodules, but use associated types to improve the ergonomics. Details (and
145145
discussions of pros/cons) are in
146146
[this comment](https://github.com/rust-lang/rfcs/pull/240/files#r17572875).

text/2497-if-let-chains.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1422,18 +1422,18 @@ Interestingly, the `EXPR is PAT` idea was floated in the original RFC 160 that
14221422
introduced `if let` expressions in the first place. There, the notion that an
14231423
operator named `is`, which introduces bindings, is confusing was brought up.
14241424

1425-
[kballard_1]: https://github.com/rust-lang/rfcs/pull/160#issuecomment-48515260
1426-
[kballard_2]: https://github.com/rust-lang/rfcs/pull/160#issuecomment-48551196
1425+
[lilyball_1]: https://github.com/rust-lang/rfcs/pull/160#issuecomment-48515260
1426+
[lilyball_2]: https://github.com/rust-lang/rfcs/pull/160#issuecomment-48551196
14271427
[liigo_1]: https://github.com/rust-lang/rfcs/pull/160#issuecomment-49234092
1428-
[kballard_3]: https://github.com/rust-lang/rfcs/pull/160#issuecomment-49242255
1428+
[lilyball_3]: https://github.com/rust-lang/rfcs/pull/160#issuecomment-49242255
14291429

1430-
It was also mentioned by [@kballard][kballard_1] that it would be appropriate
1430+
It was also mentioned by [@lilyball][lilyball_1] that it would be appropriate
14311431
if, and only if, it was limited to pattern matching, but not introducing any
14321432
bindings. We make the same argument in this RFC. The issue of unintuitive
1433-
scopes was also mentioned [by @kballard][kballard_2] there.
1433+
scopes was also mentioned [by @lilyball][lilyball_2] there.
14341434

14351435
Even the idea of `if EXPR match PAT` was floated by [@liigo][liigo_1] at the
1436-
time but that idea was ultimately also rejected. [@kballard][kballard_3] opined
1436+
time but that idea was ultimately also rejected. [@lilyball][lilyball_3] opined
14371437
that using `match` as a binary operator would be *"very confusing"* but did not
14381438
elaborate further at the time.
14391439

0 commit comments

Comments
 (0)