diff --git a/crates/nu_plugin_post/src/nu/mod.rs b/crates/nu_plugin_post/src/nu/mod.rs index 19d3f8b48..c5ea3837d 100644 --- a/crates/nu_plugin_post/src/nu/mod.rs +++ b/crates/nu_plugin_post/src/nu/mod.rs @@ -9,7 +9,7 @@ use crate::Post; impl Plugin for Post { fn config(&mut self) -> Result { Ok(Signature::build("post") - .desc("Post content to a url and retrieve data as a table if possible.") + .desc("Post content to a URL and retrieve data as a table if possible.") .required("path", SyntaxShape::Any, "the URL to post to") .required("body", SyntaxShape::Any, "the contents of the post body") .named( diff --git a/docs/commands/post.md b/docs/commands/post.md index 72f2b6ffd..8aa4dfd2d 100644 --- a/docs/commands/post.md +++ b/docs/commands/post.md @@ -1,5 +1,5 @@ # post -Post content to a url and retrieve data as a table if possible. +Post content to a URL and retrieve data as a table if possible. ## Usage ```shell