From 016d03cdc3072ae99e14ce6a86be539ee667f0b9 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 27 Apr 2019 10:34:59 -0400 Subject: [PATCH] Updated Troubleshooting (markdown) --- Troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Troubleshooting.md b/Troubleshooting.md index 8c98961..911e04c 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -28,4 +28,4 @@ Below is a chart of special characters and the value you should set them: | _(a space)_ | **%20** | While most URLs will work with the space, it's a good idea to escape it so that it can be clearly read from the URL. | **/** | **%2F** | The slash is the most commonly used delimiter that exists in a URL and helps define a path and/or location. | **@** | **%40** | The at symbol is what divides the user and/or password from hostname in a URL. if your username and/or password contains an '@' symbol, it can cause the url parser to get confused. -| **+** | **%2B** | The plus (+) symbol is interpreted as a space when specified on the URL. But if you explicitly want to use the actual symbol itself, you can identify it as such. \ No newline at end of file +| **+** | **%2B** | By default a addition/plus symbol **(+)** is interpreted as a _space_ when specified in the URL. It must be escaped if you actually want the character to be represented as a **+**. \ No newline at end of file