Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/output/play-3.twiml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Play digits="wwww3"></Play>
<Play digits="www3"></Play>
</Response>
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.10.x.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class Example {
public static void main(String[] args) {
Play play = new Play.Builder("").digits("wwww3").build();
Play play = new Play.Builder("").digits("www3").build();
VoiceResponse response = new VoiceResponse.Builder().play(play).build();

try {
Expand Down
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.5.x.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const VoiceResponse = require('twilio').twiml.VoiceResponse;

const response = new VoiceResponse();
response.play({
digits: 'wwww3',
digits: 'www3',
});

console.log(response.toString());
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.6.x.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Example
static void Main()
{
var response = new VoiceResponse();
response.Play(digits: "wwww3");
response.Play(digits: "www3");

Console.WriteLine(response.ToString());
}
Expand Down
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.6.x.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
use Twilio\TwiML\VoiceResponse;

$response = new VoiceResponse();
$response->play('', ['digits' => 'wwww3']);
$response->play('', ['digits' => 'www3']);

echo $response;
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.7.x.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public class Example {
public static void main(String[] args) {
Play play = new Play.Builder("").digits("wwww3").build();
Play play = new Play.Builder("").digits("www3").build();
VoiceResponse response = new VoiceResponse.Builder().play(play).build();

try {
Expand Down
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.7.x.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'twilio-ruby'

response = Twilio::TwiML::VoiceResponse.new
response.play(digits: 'wwww3')
response.play(digits: 'www3')

puts response
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.8.x.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
use Twilio\TwiML\VoiceResponse;

$response = new VoiceResponse();
$response->play('', ['digits' => 'wwww3']);
$response->play('', ['digits' => 'www3']);

echo $response;
2 changes: 1 addition & 1 deletion twiml/voice/play/play-3/play-3.9.x.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from twilio.twiml.voice_response import Play, VoiceResponse

response = VoiceResponse()
response.play('', digits='wwww3')
response.play('', digits='www3')

print(response)