Skip to content

Commit ce23606

Browse files
authored
Update README.md
1 parent 0be21ae commit ce23606

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This is particularly useful if you are decoding an audio (or any signal) stream.
4747
#### For 1 channel signal (mono)
4848
```java
4949
int Fs = 8000;
50-
double[] samples = {\* array of samples *\}
50+
double[] samples = {/* array of samples */}
5151
DTMFUtil dtmf = new DTMFUtil(samples, Fs);
5252
dtmf.decode();
5353
String sequence = dtmf.getDecoded()[0];
@@ -56,7 +56,7 @@ String sequence = dtmf.getDecoded()[0];
5656
#### For 2 channel signal (stereo)
5757
```java
5858
int Fs = 8000;
59-
double[][] samples = {{\* array of samples from first channel *\},{\* array of samples from second channel *\}}
59+
double[][] samples = {{/* array of samples from first channel */},{/* array of samples from second channel */}}
6060
DTMFUtil dtmf = new DTMFUtil(samples, Fs);
6161
dtmf.decode();
6262
String[] sequence = dtmf.getDecoded();

0 commit comments

Comments
 (0)