aboutsummaryrefslogtreecommitdiff
path: root/files/ko
diff options
context:
space:
mode:
authorlogic-finder <logicseeker@naver.com>2021-11-18 20:27:30 +0900
committerKyle <mkitigy@gmail.com>2021-12-27 08:05:33 +0900
commit84d2b821a4d8bcd2bd0539335d153d6799fdd166 (patch)
tree1d6424534370c859fd2ff65ba9376d02e06da17c /files/ko
parent206157000925262a9e196872580fe05cb6622c27 (diff)
downloadtranslated-content-84d2b821a4d8bcd2bd0539335d153d6799fdd166.tar.gz
translated-content-84d2b821a4d8bcd2bd0539335d153d6799fdd166.tar.bz2
translated-content-84d2b821a4d8bcd2bd0539335d153d6799fdd166.zip
modification
Diffstat (limited to 'files/ko')
-rw-r--r--files/ko/web/api/audioworkletprocessor/process/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/web/api/audioworkletprocessor/process/index.md b/files/ko/web/api/audioworkletprocessor/process/index.md
index 8181241040..d0c1749c90 100644
--- a/files/ko/web/api/audioworkletprocessor/process/index.md
+++ b/files/ko/web/api/audioworkletprocessor/process/index.md
@@ -82,7 +82,7 @@ var isActivelyProcessing = audioWorkletProcessor.process(inputs, outputs, parame
## 예제
-이 예제에서 우리는 프로세서의 첫번째 출력에 백색소음을 출력하는 `AudioWorkletProcessor` 를 생성할 것입니다. gain은 `customGain` 매개변수에 의해 제어될 수 있습니다.
+이 예제에서 우리는 프로세서의 첫번째 출력에 백색소음을 출력하는 `AudioWorkletProcessor` 를 생성할 것입니다. gain은 `customGain` 파라미터에 의해 제어될 수 있습니다.
```js
class WhiteNoiseProcessor extends AudioWorkletProcessor {
@@ -109,7 +109,7 @@ class WhiteNoiseProcessor extends AudioWorkletProcessor {
// 이것이 뜻하지 않게 garbage-collected되지 않도록 우리는 true를 반환할 것입니다
return true
}
- // process 메서드에서 사용되는 customGain 매개변수를 정의합니다
+ // process 메서드에서 사용되는 customGain 파라미터를 정의합니다
static get parameterDescriptors () {
return [{
name: 'customGain',