Przeglądaj źródła

Fix typos on comments

tags/v0.0.2
Jorge Vallecillo 4 lat temu
rodzic
commit
713db5d8c3

+ 1
- 1
doc/example/libs/strophe/strophe.js Wyświetl plik

2941
     },
2941
     },
2942
 
2942
 
2943
     /** PrivateFunction: _dataRecv
2943
     /** PrivateFunction: _dataRecv
2944
-     *  _Private_ handler to processes incoming data from the the connection.
2944
+     *  _Private_ handler to processes incoming data from the connection.
2945
      *
2945
      *
2946
      *  Except for _connect_cb handling the initial connection request,
2946
      *  Except for _connect_cb handling the initial connection request,
2947
      *  this function handles the incoming data for all requests.  This
2947
      *  this function handles the incoming data for all requests.  This

+ 1
- 1
modules/RTC/RTC.js Wyświetl plik

753
     }
753
     }
754
 
754
 
755
     /**
755
     /**
756
-     * Returns true if retrieving the the list of input devices is supported
756
+     * Returns true if retrieving the list of input devices is supported
757
      * and false if not.
757
      * and false if not.
758
      */
758
      */
759
     static isDeviceListAvailable() {
759
     static isDeviceListAvailable() {

+ 1
- 1
modules/RTC/TPCUtils.js Wyświetl plik

137
         const idx = sdp.media.findIndex(mline => mline.type === 'video');
137
         const idx = sdp.media.findIndex(mline => mline.type === 'video');
138
 
138
 
139
         if (sdp.media[idx].rids && (sdp.media[idx].simulcast_03 || sdp.media[idx].simulcast)) {
139
         if (sdp.media[idx].rids && (sdp.media[idx].simulcast_03 || sdp.media[idx].simulcast)) {
140
-            // Make sure we don't have the simulcast recv line on video descriptions other than the
140
+            // Make sure we don't have the simulcast recv line on video descriptions other than
141
             // the first video description.
141
             // the first video description.
142
             sdp.media.forEach((mline, i) => {
142
             sdp.media.forEach((mline, i) => {
143
                 if (mline.type === 'video' && i !== idx) {
143
                 if (mline.type === 'video' && i !== idx) {

+ 2
- 2
modules/recording/JibriSession.js Wyświetl plik

144
      * @param {string} options.focusMucJid - The JID of the focus participant
144
      * @param {string} options.focusMucJid - The JID of the focus participant
145
      * that controls recording.
145
      * that controls recording.
146
      * @param {streamId} options.streamId - Necessary for live streaming, this
146
      * @param {streamId} options.streamId - Necessary for live streaming, this
147
-     * is the the stream key needed to start a live streaming session with the
147
+     * is the stream key needed to start a live streaming session with the
148
      * streaming service provider.
148
      * streaming service provider.
149
      * @returns Promise
149
      * @returns Promise
150
      */
150
      */
211
      * @param {string} options.focusMucJid - The JID of the focus participant
211
      * @param {string} options.focusMucJid - The JID of the focus participant
212
      * that controls recording.
212
      * that controls recording.
213
      * @param {streamId} options.streamId - Necessary for live streaming, this
213
      * @param {streamId} options.streamId - Necessary for live streaming, this
214
-     * is the the stream key needed to start a live streaming session with the
214
+     * is the stream key needed to start a live streaming session with the
215
      * streaming service provider.
215
      * streaming service provider.
216
      * @returns Object - The XMPP IQ message.
216
      * @returns Object - The XMPP IQ message.
217
      */
217
      */

+ 1
- 1
modules/statistics/CallStats.js Wyświetl plik

69
 
69
 
70
 /**
70
 /**
71
  * An instance of this class is a wrapper for the CallStats API fabric. A fabric
71
  * An instance of this class is a wrapper for the CallStats API fabric. A fabric
72
- * reports one peer connection the the CallStats backend and is allocated with
72
+ * reports one peer connection the CallStats backend and is allocated with
73
  * {@link callstats.addNewFabric}. It has a bunch of instance methods for
73
  * {@link callstats.addNewFabric}. It has a bunch of instance methods for
74
  * reporting various events. A fabric is considered disposed when
74
  * reporting various events. A fabric is considered disposed when
75
  * {@link CallStats.sendTerminateEvent} is executed.
75
  * {@link CallStats.sendTerminateEvent} is executed.

+ 1
- 1
modules/transcription/audioRecorder.js Wyświetl plik

95
 }
95
 }
96
 
96
 
97
 /**
97
 /**
98
- * Add the the exported module so that it can be accessed by other files
98
+ * Add the exported module so that it can be accessed by other files
99
  */
99
  */
100
 AudioRecorder.determineCorrectFileType = determineCorrectFileType;
100
 AudioRecorder.determineCorrectFileType = determineCorrectFileType;
101
 
101
 

+ 1
- 1
modules/transcription/transcriber.js Wyświetl plik

85
     console.log('stopping recording and sending audio files');
85
     console.log('stopping recording and sending audio files');
86
     this.audioRecorder.stop();
86
     this.audioRecorder.stop();
87
 
87
 
88
-    // and send all recorded audio the the transcription service
88
+    // and send all recorded audio the transcription service
89
     const callBack = blobCallBack.bind(null, this);
89
     const callBack = blobCallBack.bind(null, this);
90
 
90
 
91
     this.audioRecorder.getRecordingResults().forEach(recordingResult => {
91
     this.audioRecorder.getRecordingResults().forEach(recordingResult => {

Ładowanie…
Anuluj
Zapisz