Browse Source

Fix typos on comments

tags/v0.0.2
Jorge Vallecillo 4 years ago
parent
commit
713db5d8c3

+ 1
- 1
doc/example/libs/strophe/strophe.js View File

@@ -2941,7 +2941,7 @@ Strophe.Connection.prototype = {
2941 2941
     },
2942 2942
 
2943 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 2946
      *  Except for _connect_cb handling the initial connection request,
2947 2947
      *  this function handles the incoming data for all requests.  This

+ 1
- 1
modules/RTC/RTC.js View File

@@ -753,7 +753,7 @@ export default class RTC extends Listenable {
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 757
      * and false if not.
758 758
      */
759 759
     static isDeviceListAvailable() {

+ 1
- 1
modules/RTC/TPCUtils.js View File

@@ -137,7 +137,7 @@ export class TPCUtils {
137 137
         const idx = sdp.media.findIndex(mline => mline.type === 'video');
138 138
 
139 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 141
             // the first video description.
142 142
             sdp.media.forEach((mline, i) => {
143 143
                 if (mline.type === 'video' && i !== idx) {

+ 2
- 2
modules/recording/JibriSession.js View File

@@ -144,7 +144,7 @@ export default class JibriSession {
144 144
      * @param {string} options.focusMucJid - The JID of the focus participant
145 145
      * that controls recording.
146 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 148
      * streaming service provider.
149 149
      * @returns Promise
150 150
      */
@@ -211,7 +211,7 @@ export default class JibriSession {
211 211
      * @param {string} options.focusMucJid - The JID of the focus participant
212 212
      * that controls recording.
213 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 215
      * streaming service provider.
216 216
      * @returns Object - The XMPP IQ message.
217 217
      */

+ 1
- 1
modules/statistics/CallStats.js View File

@@ -69,7 +69,7 @@ let _fabrics;
69 69
 
70 70
 /**
71 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 73
  * {@link callstats.addNewFabric}. It has a bunch of instance methods for
74 74
  * reporting various events. A fabric is considered disposed when
75 75
  * {@link CallStats.sendTerminateEvent} is executed.

+ 1
- 1
modules/transcription/audioRecorder.js View File

@@ -95,7 +95,7 @@ function AudioRecorder(jitsiConference) {
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 100
 AudioRecorder.determineCorrectFileType = determineCorrectFileType;
101 101
 

+ 1
- 1
modules/transcription/transcriber.js View File

@@ -85,7 +85,7 @@ Transcriber.prototype.stop = function stop(callback) {
85 85
     console.log('stopping recording and sending audio files');
86 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 89
     const callBack = blobCallBack.bind(null, this);
90 90
 
91 91
     this.audioRecorder.getRecordingResults().forEach(recordingResult => {

Loading…
Cancel
Save