We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f1dab4 commit 415be14Copy full SHA for 415be14
SNIPPETS.md
@@ -336,7 +336,7 @@ System.out.println(response.length);
336
Map<String, ?> response = client.getCustomClient().get("https://rest.nexmo.com/account/get-balance");
337
System.out.println("€" + response.get("value"));
338
```
339
-### Get Request JSONable
+### Get Request Jsonable
340
341
```java
342
BalanceResponse response = client.getCustomClient().get("https://rest.nexmo.com/account/get-balance");
@@ -2737,7 +2737,7 @@ List<Broadcast> broadcasts = videoClient.listBroadcasts();
2737
2738
System.out.println("Retrieved list of broadcasts: " + broadcasts);
2739
2740
-### Sip Dial
+### SIP Dial
2741
2742
2743
src/main/java/AggregateSnippets.java
@@ -140,9 +140,9 @@ private static boolean isInitialize(File file) {
140
141
private static String toHeadingTitle(String title) {
142
var acronyms = new String[]{
143
- "jwt", "id", "uuid", "url", "sim",
+ "jwt", "id", "uuid", "url", "sim", "sip",
144
"sms", "rcs", "mms", "psd2", "dlr", "cnam",
145
- "dtmf", "asr", "tts", "ncco", "rtc"
+ "dtmf", "asr", "tts", "ncco", "rtc", "json"
146
};
147
var result = (title.substring(0, 1).toUpperCase() + title.substring(1))
148
.replace("NCCO", "ncco") // To avoid adding spaces in the next regex
@@ -152,7 +152,6 @@ private static String toHeadingTitle(String title) {
152
.replace("Verify\n", "Verify (Legacy)\n")
153
.replace("Verify2", "Verify v2")
154
.replace("Whatsapp", "WhatsApp")
155
- .replace("Json", "JSON")
156
.replace("Simswap", "SIM Swap")
157
.replace("Callncco", "Call NCCO");
158
for (var ac : acronyms) {
0 commit comments