nushell/crates/nu-engine/src/compile
Devyn Cairns d618fd0527
Fix bad method links in docstrings (#13471)
# Description

Seems like I developed a bit of a bad habit of trying to link

```rust
/// [`.foo()`]
```

in docstrings, and this just doesn't work automatically; you have to do 

```rust
/// [`.foo()`](Self::foo)
```

if you want it to actually link. I think I found and replaced all of
these.

# User-Facing Changes

Just docs.
2024-07-27 19:39:29 -07:00
..
builder.rs Fix bad method links in docstrings (#13471) 2024-07-27 19:39:29 -07:00
call.rs Internal representation (IR) compiler and evaluator (#13330) 2024-07-10 17:33:59 -07:00
expression.rs IR: fix incorrect capturing of subexpressions (#13467) 2024-07-27 19:38:57 -07:00
keyword.rs Internal representation (IR) compiler and evaluator (#13330) 2024-07-10 17:33:59 -07:00
mod.rs Internal representation (IR) compiler and evaluator (#13330) 2024-07-10 17:33:59 -07:00
operator.rs Internal representation (IR) compiler and evaluator (#13330) 2024-07-10 17:33:59 -07:00
redirect.rs Internal representation (IR) compiler and evaluator (#13330) 2024-07-10 17:33:59 -07:00