diff --git a/docs/dictionary/keyword/URL.lcdoc b/docs/dictionary/keyword/URL.lcdoc index ab2c19ef68e..b8cac00d27c 100644 --- a/docs/dictionary/keyword/URL.lcdoc +++ b/docs/dictionary/keyword/URL.lcdoc @@ -26,7 +26,9 @@ Example: post field "Results" to URL "http://www.example.org/current.txt" Example: -get URL "http://www.xworlds.com/index.html" +local tURL +put "http://www.xworlds.com/index.html" into tURL +get URL tURL Example: put "Hello World" into URL "file:/Users/myuser/Documents/sample.txt" diff --git a/docs/notes/bugfix-20303.md b/docs/notes/bugfix-20303.md new file mode 100644 index 00000000000..f2e9beb7a8f --- /dev/null +++ b/docs/notes/bugfix-20303.md @@ -0,0 +1 @@ +# Added example to the URL keyword entry to demonstrate how it is used with variables.