mirror of
https://github.com/nushell/nushell
synced 2024-12-25 04:23:10 +00:00
Fix the document CI error for polars profile
command (#14642)
# Description Fix the docs repo CI build error here: https://github.com/nushell/nushell.github.io/actions/runs/12425087184/job/34691291790#step:5:18 The doc generated by `make_docs.nu` for `polars profile` command will make the CI build fail due to the indention error of markdown front matters. I used to fix it manually before, for the long run, it's better to fix it from the source code.
This commit is contained in:
parent
e0685315b4
commit
039d0a685a
1 changed files with 6 additions and 2 deletions
|
@ -30,9 +30,13 @@ impl PluginCommand for ProfileDF {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn description(&self) -> &str {
|
fn description(&self) -> &str {
|
||||||
"Profile a lazy dataframe. This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed.
|
"Profile a lazy dataframe."
|
||||||
|
}
|
||||||
|
|
||||||
The units of the timings are microseconds."
|
fn extra_description(&self) -> &str {
|
||||||
|
r#"This will run the query and return a record containing the materialized DataFrame and a DataFrame that contains profiling information of each node that is executed.
|
||||||
|
|
||||||
|
The units of the timings are microseconds."#
|
||||||
}
|
}
|
||||||
|
|
||||||
fn examples(&self) -> Vec<Example> {
|
fn examples(&self) -> Vec<Example> {
|
||||||
|
|
Loading…
Reference in a new issue