aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/working_with_javascript_in_rails.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-23 10:15:28 +0900
committerGitHub <noreply@github.com>2017-08-23 10:15:28 +0900
commit793807375b62ca091f59576642dd5affcf07144c (patch)
tree9696228fca642d0eafb66511b5dc1e1923829961 /guides/source/working_with_javascript_in_rails.md
parent6655f1e54097350d893acf2032a4aaf9957f137b (diff)
parentbf48e90e6925eea5ba74a09988d2b20dd553c845 (diff)
downloadrails-793807375b62ca091f59576642dd5affcf07144c.tar.gz
rails-793807375b62ca091f59576642dd5affcf07144c.tar.bz2
rails-793807375b62ca091f59576642dd5affcf07144c.zip
Merge pull request #30373 from yhirano55/use_https_instead_of_http_in_rails_guide
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".