aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/working_with_javascript_in_rails.md
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-08-23 09:36:38 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-08-23 09:39:45 +0900
commitbf48e90e6925eea5ba74a09988d2b20dd553c845 (patch)
tree2ead15077f59b09580373bdbc4d4a049acdcefe8 /guides/source/working_with_javascript_in_rails.md
parent80ccfec0740a32fa3a8c0d52549e5b7c59db1a02 (diff)
downloadrails-bf48e90e6925eea5ba74a09988d2b20dd553c845.tar.gz
rails-bf48e90e6925eea5ba74a09988d2b20dd553c845.tar.bz2
rails-bf48e90e6925eea5ba74a09988d2b20dd553c845.zip
Use https instead of http in guide [ci skip]
Diffstat (limited to 'guides/source/working_with_javascript_in_rails.md')
-rw-r--r--guides/source/working_with_javascript_in_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/working_with_javascript_in_rails.md b/guides/source/working_with_javascript_in_rails.md
index 304ac97b32..6bce73ccad 100644
--- a/guides/source/working_with_javascript_in_rails.md
+++ b/guides/source/working_with_javascript_in_rails.md
@@ -256,7 +256,7 @@ attributes to accomplish this.
#### `data-method`
Activating hyperlinks always results in an HTTP GET request. However, if your
-application is [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer),
+application is [RESTful](https://en.wikipedia.org/wiki/Representational_State_Transfer),
some links are in fact actions that change data on the server, and must be
performed with non-GET requests. This attribute allows marking up such links
with an explicit method such as "post", "put" or "delete".