aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/guide/using_promises/index.html
diff options
context:
space:
mode:
author3indblown Leaf <69508345+kraccoon-dev@users.noreply.github.com>2022-02-16 17:11:01 +0900
committerGitHub <noreply@github.com>2022-02-16 17:11:01 +0900
commitc5e82bf41f336a59704ee8c429e3147f73fa8a48 (patch)
tree1329fd03f09c80a3fd39dfcf95bb480866252c8f /files/ko/web/javascript/guide/using_promises/index.html
parent2968f00d257b512ac0d046a3fa12e8deec2540fb (diff)
downloadtranslated-content-c5e82bf41f336a59704ee8c429e3147f73fa8a48.tar.gz
translated-content-c5e82bf41f336a59704ee8c429e3147f73fa8a48.tar.bz2
translated-content-c5e82bf41f336a59704ee8c429e3147f73fa8a48.zip
remove all span tags 1 (#3920)
Co-authored-by: Kyle <mkitigy@gmail.com>
Diffstat (limited to 'files/ko/web/javascript/guide/using_promises/index.html')
-rw-r--r--files/ko/web/javascript/guide/using_promises/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/guide/using_promises/index.html b/files/ko/web/javascript/guide/using_promises/index.html
index 953929fe28..53dbb7a00f 100644
--- a/files/ko/web/javascript/guide/using_promises/index.html
+++ b/files/ko/web/javascript/guide/using_promises/index.html
@@ -31,7 +31,7 @@ translation_of: Web/JavaScript/Guide/Using_promises
<p>만약 <code>createAudioFileAsync()</code> 함수가 Promise를 반환해주도록 수정해본다면, 다음과 같이 간단하게 사용되어질 수 있습니다.</p>
-<pre><code><span style='background-color: rgba(220, 220, 220, 0.5); font-family: consolas,"Liberation Mono",courier,monospace; font-style: inherit; font-weight: inherit;'>createAudioFileAsync(audioSettings).then(successCallback, failureCallback);</span></code></pre>
+<pre><code>createAudioFileAsync(audioSettings).then(successCallback, failureCallback);</code></pre>
<p>…조금 더 간단하게 써보자면:</p>