Skip to content

Commit

Permalink
fix: use break() for method names rather than break_() (#897)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcole19 committed Jan 19, 2023
1 parent 6dff2f9 commit 3c68014
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions lib/twiml/VoiceResponse.ts
Expand Up @@ -1264,7 +1264,7 @@ namespace VoiceResponse {
}

/**
* Attributes to pass to break_
* Attributes to pass to break
*/
export interface SsmlBreakAttributes {
/** strength - Set a pause based on strength */
Expand Down Expand Up @@ -1338,7 +1338,7 @@ namespace VoiceResponse {
}

/**
* Attributes to pass to break_
* Attributes to pass to break
*/
export interface SsmlBreakAttributes {
/** strength - Set a pause based on strength */
Expand Down Expand Up @@ -1396,7 +1396,7 @@ namespace VoiceResponse {
}

/**
* Attributes to pass to break_
* Attributes to pass to break
*/
export interface SsmlBreakAttributes {
/** strength - Set a pause based on strength */
Expand Down Expand Up @@ -1470,7 +1470,7 @@ namespace VoiceResponse {
}

/**
* Attributes to pass to break_
* Attributes to pass to break
*/
export interface SsmlBreakAttributes {
/** strength - Set a pause based on strength */
Expand Down Expand Up @@ -1544,7 +1544,7 @@ namespace VoiceResponse {
}

/**
* Attributes to pass to break_
* Attributes to pass to break
*/
export interface SsmlBreakAttributes {
/** strength - Set a pause based on strength */
Expand Down Expand Up @@ -1618,7 +1618,7 @@ namespace VoiceResponse {
}

/**
* Attributes to pass to break_
* Attributes to pass to break
*/
export interface SsmlBreakAttributes {
/** strength - Set a pause based on strength */
Expand Down Expand Up @@ -1692,7 +1692,7 @@ namespace VoiceResponse {
}

/**
* Attributes to pass to break_
* Attributes to pass to break
*/
export interface SsmlBreakAttributes {
/** strength - Set a pause based on strength */
Expand Down Expand Up @@ -2798,7 +2798,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(this.say.ele("break", attributes));
Expand Down Expand Up @@ -3079,7 +3079,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(
Expand Down Expand Up @@ -3264,7 +3264,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(
Expand Down Expand Up @@ -3477,7 +3477,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(this.ssmlP.ele("break", attributes));
Expand Down Expand Up @@ -3685,7 +3685,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(
Expand Down Expand Up @@ -3904,7 +3904,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(this.ssmlS.ele("break", attributes));
Expand Down Expand Up @@ -4109,7 +4109,7 @@ namespace VoiceResponse {
*
* @param attributes - TwiML attributes
*/
break_(
break(
attributes?: VoiceResponse.SsmlBreakAttributes
): VoiceResponse.SsmlBreak {
return new VoiceResponse.SsmlBreak(this.ssmlW.ele("break", attributes));
Expand Down

0 comments on commit 3c68014

Please sign in to comment.