浏览代码

Fix typos

dev1
Jorge Vallecillo 4 年前
父节点
当前提交
7fcdcc26ab
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1
    1
      modules/statistics/CallStats.js
  2. 1
    1
      modules/transcription/transcriber.js

+ 1
- 1
modules/statistics/CallStats.js 查看文件

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 CallStats backend and is allocated with
72
+ * reports one peer connection to 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/transcriber.js 查看文件

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 transcription service
88
+    // and send all recorded audio to 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 => {

正在加载...
取消
保存