Merge pull request #35815 from sharang-d/update-action-cable-docs

url -> URL in Action Cable guide [ci skip]
This commit is contained in:
Xavier Noria 2019-04-01 13:09:20 +02:00 committed by GitHub
commit d3a6277fd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -190,15 +190,15 @@ This will ready a consumer that'll connect against `/cable` on your server by de
The connection won't be established until you've also specified at least one subscription The connection won't be established until you've also specified at least one subscription
you're interested in having. you're interested in having.
The consumer can optionally take an argument that specifies the url to connect to. This The consumer can optionally take an argument that specifies the URL to connect to. This
can be a string, or a function that returns a string that will be called when the can be a string, or a function that returns a string that will be called when the
WebSocket is opened. WebSocket is opened.
```js ```js
// Specify a different url to connect to // Specify a different URL to connect to
createConsumer('https://ws.example.com/cable') createConsumer('https://ws.example.com/cable')
// Use a function to dynamically generate the url // Use a function to dynamically generate the URL
createConsumer(getWebSocketURL) createConsumer(getWebSocketURL)
function getWebSocketURL { function getWebSocketURL {