diff options
author | Jade <[email protected]> | 2021-06-14 05:57:10 +0100 |
---|---|---|
committer | Jade <[email protected]> | 2021-06-14 05:58:05 +0100 |
commit | 20b325c7d50092cada3408aee958b3d523541f2c (patch) | |
tree | 5f8078106976c0573ef05861241f434fb5271891 /crates/parser | |
parent | 660a89620f65225359559ddcaf158bdb9dfe0d4c (diff) |
tree-wide: make rustdoc links spiky so they are clickable
Diffstat (limited to 'crates/parser')
-rw-r--r-- | crates/parser/src/grammar/expressions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/grammar/expressions.rs b/crates/parser/src/grammar/expressions.rs index 9d22e1950..686a64345 100644 --- a/crates/parser/src/grammar/expressions.rs +++ b/crates/parser/src/grammar/expressions.rs | |||
@@ -208,7 +208,7 @@ struct Restrictions { | |||
208 | 208 | ||
209 | /// Binding powers of operators for a Pratt parser. | 209 | /// Binding powers of operators for a Pratt parser. |
210 | /// | 210 | /// |
211 | /// See https://www.oilshell.org/blog/2016/11/03.html | 211 | /// See <https://www.oilshell.org/blog/2016/11/03.html> |
212 | #[rustfmt::skip] | 212 | #[rustfmt::skip] |
213 | fn current_op(p: &Parser) -> (u8, SyntaxKind) { | 213 | fn current_op(p: &Parser) -> (u8, SyntaxKind) { |
214 | const NOT_AN_OP: (u8, SyntaxKind) = (0, T![@]); | 214 | const NOT_AN_OP: (u8, SyntaxKind) = (0, T![@]); |