From 4ed615cfcc32956eb3c573e96f16ab568241b0fb Mon Sep 17 00:00:00 2001 From: Eli Flanagan Date: Fri, 25 Jun 2021 10:14:20 -0400 Subject: [PATCH] documentation: consistent abbreviation for URL (#3684) I noticed `fetch`'s documentation used "URL" so wanted to do so here as well. --- crates/nu_plugin_post/src/nu/mod.rs | 2 +- docs/commands/post.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu_plugin_post/src/nu/mod.rs b/crates/nu_plugin_post/src/nu/mod.rs index 19d3f8b48e..c5ea3837da 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 72f2b6ffd9..8aa4dfd2db 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