mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 22:50:14 +02:00
update str find-replace
to str replace
(#5120)
This commit is contained in:
@ -4,10 +4,10 @@ mod collect;
|
||||
mod contains;
|
||||
mod downcase;
|
||||
mod ends_with;
|
||||
mod find_replace;
|
||||
mod index_of;
|
||||
mod length;
|
||||
mod lpad;
|
||||
mod replace;
|
||||
mod reverse;
|
||||
mod rpad;
|
||||
mod starts_with;
|
||||
@ -21,10 +21,10 @@ pub use collect::*;
|
||||
pub use contains::SubCommand as StrContains;
|
||||
pub use downcase::SubCommand as StrDowncase;
|
||||
pub use ends_with::SubCommand as StrEndswith;
|
||||
pub use find_replace::SubCommand as StrFindReplace;
|
||||
pub use index_of::SubCommand as StrIndexOf;
|
||||
pub use length::SubCommand as StrLength;
|
||||
pub use lpad::SubCommand as StrLpad;
|
||||
pub use replace::SubCommand as StrReplace;
|
||||
pub use reverse::SubCommand as StrReverse;
|
||||
pub use rpad::SubCommand as StrRpad;
|
||||
pub use starts_with::SubCommand as StrStartsWith;
|
||||
|
Reference in New Issue
Block a user