mirror of
https://github.com/nushell/nushell.git
synced 2025-04-28 07:08:20 +02:00
Fix typo: patter → pattern (#3890)
This commit is contained in:
parent
bc682066d8
commit
325f45fa66
@ -16,7 +16,7 @@ impl WholeStreamCommand for DataFrame {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn usage(&self) -> &str {
|
fn usage(&self) -> &str {
|
||||||
"[Series] Checks if a patter is contained in a string"
|
"[Series] Checks if a pattern is contained in a string"
|
||||||
}
|
}
|
||||||
|
|
||||||
fn signature(&self) -> Signature {
|
fn signature(&self) -> Signature {
|
||||||
@ -33,7 +33,7 @@ impl WholeStreamCommand for DataFrame {
|
|||||||
|
|
||||||
fn examples(&self) -> Vec<Example> {
|
fn examples(&self) -> Vec<Example> {
|
||||||
vec![Example {
|
vec![Example {
|
||||||
description: "Returns boolean indicating if patter was found",
|
description: "Returns boolean indicating if pattern was found",
|
||||||
example: "[abc acb acb] | dataframe to-df | dataframe contains ab",
|
example: "[abc acb acb] | dataframe to-df | dataframe contains ab",
|
||||||
result: Some(vec![NuDataFrame::try_from_columns(
|
result: Some(vec![NuDataFrame::try_from_columns(
|
||||||
vec![Column::new(
|
vec![Column::new(
|
||||||
|
Loading…
Reference in New Issue
Block a user