Skip to content

Commit

Permalink
Auto Deploy (Fix typo (#28)) 0a03277
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 25, 2023
1 parent ef5b6ec commit 41574ee
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 16 deletions.
2 changes: 1 addition & 1 deletion ch03-02-data-types.html
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ <h4 id="배열-타입"><a class="header" href="#배열-타입">배열 타입</a>
<p>여러 값의 집합체를 만드는 다른 방법으로는 <em>배열</em>이 있습니다. 튜플과는 달리
배열의 모든 요소는 모두 같은 타입이여야 합니다. 몇몇 다른 언어들과는 달리
러스트의 배열은 고정된 길이를 갖습니다.</p>
<p>대괄호 안에 쉼표로 구분한 값들 나열해서 배열을
<p>대괄호 안에 쉼표로 구분한 값들을 나열해서 배열을
만들 수 있습니다:</p>
<p><span class="filename">파일명: src/main.rs</span></p>
<pre><pre class="playground"><code class="language-rust">fn main() {
Expand Down
2 changes: 1 addition & 1 deletion ch03-05-control-flow.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ <h3 id="if-표현식"><a class="header" href="#if-표현식"><code>if</code> 표
}</code></pre></pre>
<p>이 코드를 실행시키면 <code>number was something other than zero</code>가 출력될 것입니다.</p>
<h4 id="else-if로-여러-조건식-다루기"><a class="header" href="#else-if로-여러-조건식-다루기"><code>else if</code>로 여러 조건식 다루기</a></h4>
<p><code>if</code><code>else</code> 사이에 <code>else if</code>를 조합하면 여러 조건식을 사용할
<p><code>if</code><code>else</code> 사이에 <code>else if</code>를 조합하면 여러 조건식을 사용할
수 있습니다. 예를 들면:</p>
<p><span class="filename">파일명: src/main.rs</span></p>
<pre><pre class="playground"><code class="language-rust">fn main() {
Expand Down
2 changes: 1 addition & 1 deletion ch06-01-defining-an-enum.html
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ <h3 id="열거형-값"><a class="header" href="#열거형-값">열거형 값</a>
열거형은 하나의 타입으로 이것이 가능합니다.</p>
<p>열거형과 구조체는 한 가지 더 유사한 점이 있습니다. 구조체에 <code>impl</code>을 사용해서
메서드를 정의한 것처럼, 열거형에도 정의할 수 있습니다. 여기 <code>Message</code> 열거형에
정의한 <code>call</code>이라는 메서드가 있습니다:</p>
정의한 <code>call</code>이라는 메서드가 있습니다:</p>
<pre><pre class="playground"><code class="language-rust"><span class="boring">fn main() {
</span><span class="boring"> enum Message {
</span><span class="boring"> Quit,
Expand Down
3 changes: 1 addition & 2 deletions ch09-01-unrecoverable-errors-with-panic.html
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,7 @@ <h3 id="panic-백트레이스-이용하기"><a class="header" href="#panic-백
코드를 어떻게 고쳐야 하는지 알아야 합니다.</p>
<p>다음은 에러가 발생했을 때 <code>Result</code>를 이용하여 복구하는 방법을 살펴보겠습니다.
언제 <code>panic!</code>을 써야 하는지, 혹은 쓰지 말아야 하는지에 대해서는 그다음에 나올
<a href="ch09-03-to-panic-or-not-to-panic.html#to-panic-or-not-to-panic"><code>panic!</code>이냐, <code>panic!</code>이 아니냐, 그것이 문제로다’</a><!-- ignore -->절에서
에서 알아볼 예정입니다.</p>
<a href="ch09-03-to-panic-or-not-to-panic.html#to-panic-or-not-to-panic"><code>panic!</code>이냐, <code>panic!</code>이 아니냐, 그것이 문제로다’</a><!-- ignore -->절에서 알아볼 예정입니다.</p>

</main>

Expand Down
2 changes: 1 addition & 1 deletion ch15-02-deref.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ <h2 id="deref-트레이트로-스마트-포인터를-보통의-참조자처럼-
<p>먼저 역참조 연산자가 보통의 참조자에 대해 동작하는 방식을 살펴보고,
그런 다음 <code>Box&lt;T&gt;</code>처럼 동작하는 커스텀 타입의 정의를 시도해 보면서,
역참조 연산자가 새로 정의한 타입에서는 참조자처럼 동작하지 않는 이유를
알아보겠습니다. <code>Defer</code> 트레이트를 구현하는 것이 스마트 포인터가
알아보겠습니다. <code>Deref</code> 트레이트를 구현하는 것이 스마트 포인터가
참조자와 유사한 방식으로 동작하도록 하는 원리를 탐구해 볼 것입니다.
그리고서 러스트의 <em>역참조 강제 (deref corecion)</em> 기능과 이 기능이
참조자 혹은 스마트 포인터와 함께 동작하도록 하는 방식을 살펴보겠습니다.</p>
Expand Down
2 changes: 1 addition & 1 deletion ch15-03-drop.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ <h2 id="drop-트레이트로-메모리-정리-코드-실행하기"><a class="hea
지정합니다. <code>Drop</code> 트레이트는 <code>drop</code>이라는 이름의 메서드 하나를 구현해야 하는데 이
메서드는 <code>self</code>에 대한 가변 참조자를 매개변수로 갖습니다. 러스트가 언제 <code>drop</code>
호출하는지 알아보기 위해서, 지금은 <code>println!</code> 구문을 써서 <code>drop</code>을 구현해 봅시다.</p>
<p>예제 15-4는 러스트가 <code>drop</code> 함수를 호출하는 시점을 보여주기 위해서,
<p>예제 15-14는 러스트가 <code>drop</code> 함수를 호출하는 시점을 보여주기 위해서,
인스턴스가 스코프 밖으로 벗어났을 때 <code>Dropping CustomSmartPointer!</code>
출력하는 커스텀 기능만을 갖춘 <code>CustomSmartPointer</code> 구조체를 보여줍니다.</p>
<p><span class="filename">파일명: src/main.rs</span></p>
Expand Down
13 changes: 6 additions & 7 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -2358,7 +2358,7 @@ <h4 id="배열-타입"><a class="header" href="#배열-타입">배열 타입</a>
<p>여러 값의 집합체를 만드는 다른 방법으로는 <em>배열</em>이 있습니다. 튜플과는 달리
배열의 모든 요소는 모두 같은 타입이여야 합니다. 몇몇 다른 언어들과는 달리
러스트의 배열은 고정된 길이를 갖습니다.</p>
<p>대괄호 안에 쉼표로 구분한 값들 나열해서 배열을
<p>대괄호 안에 쉼표로 구분한 값들을 나열해서 배열을
만들 수 있습니다:</p>
<p><span class="filename">파일명: src/main.rs</span></p>
<pre><pre class="playground"><code class="language-rust">fn main() {
Expand Down Expand Up @@ -2888,7 +2888,7 @@ <h3 id="if-표현식"><a class="header" href="#if-표현식"><code>if</code> 표
}</code></pre></pre>
<p>이 코드를 실행시키면 <code>number was something other than zero</code>가 출력될 것입니다.</p>
<h4 id="else-if로-여러-조건식-다루기"><a class="header" href="#else-if로-여러-조건식-다루기"><code>else if</code>로 여러 조건식 다루기</a></h4>
<p><code>if</code>와 <code>else</code> 사이에 <code>else if</code>를 조합하면 여러 조건식을 사용할
<p><code>if</code>와 <code>else</code> 사이에 <code>else if</code>를 조합하면 여러 조건식을 사용할
수 있습니다. 예를 들면:</p>
<p><span class="filename">파일명: src/main.rs</span></p>
<pre><pre class="playground"><code class="language-rust">fn main() {
Expand Down Expand Up @@ -5650,7 +5650,7 @@ <h3 id="열거형-값"><a class="header" href="#열거형-값">열거형 값</a>
열거형은 하나의 타입으로 이것이 가능합니다.</p>
<p>열거형과 구조체는 한 가지 더 유사한 점이 있습니다. 구조체에 <code>impl</code>을 사용해서
메서드를 정의한 것처럼, 열거형에도 정의할 수 있습니다. 여기 <code>Message</code> 열거형에
정의한 <code>call</code>이라는 메서드가 있습니다:</p>
정의한 <code>call</code>이라는 메서드가 있습니다:</p>
<pre><pre class="playground"><code class="language-rust"><span class="boring">fn main() {
</span><span class="boring"> enum Message {
</span><span class="boring"> Quit,
Expand Down Expand Up @@ -8417,8 +8417,7 @@ <h3 id="panic-백트레이스-이용하기"><a class="header" href="#panic-백
코드를 어떻게 고쳐야 하는지 알아야 합니다.</p>
<p>다음은 에러가 발생했을 때 <code>Result</code>를 이용하여 복구하는 방법을 살펴보겠습니다.
언제 <code>panic!</code>을 써야 하는지, 혹은 쓰지 말아야 하는지에 대해서는 그다음에 나올
<a href="ch09-03-to-panic-or-not-to-panic.html#to-panic-or-not-to-panic">‘<code>panic!</code>이냐, <code>panic!</code>이 아니냐, 그것이 문제로다’</a><!-- ignore -->절에서
에서 알아볼 예정입니다.</p>
<a href="ch09-03-to-panic-or-not-to-panic.html#to-panic-or-not-to-panic">‘<code>panic!</code>이냐, <code>panic!</code>이 아니냐, 그것이 문제로다’</a><!-- ignore -->절에서 알아볼 예정입니다.</p>
<div style="break-before: page; page-break-before: always;"></div><h2 id="result로-복구-가능한-에러-처리하기"><a class="header" href="#result로-복구-가능한-에러-처리하기"><code>Result</code>로 복구 가능한 에러 처리하기</a></h2>
<p>대부분 에러는 프로그램을 전부 중단해야 할 정도로 심각하진 않습니다.
때때로 어떤 함수가 실패할 경우는 쉽게 해석하고 대응할 수 있는 원인
Expand Down Expand Up @@ -17553,7 +17552,7 @@ <h4 id="boxt를-이용하여-알려진-크기를-가진-재귀적-타입-만들
<p>먼저 역참조 연산자가 보통의 참조자에 대해 동작하는 방식을 살펴보고,
그런 다음 <code>Box&lt;T&gt;</code>처럼 동작하는 커스텀 타입의 정의를 시도해 보면서,
역참조 연산자가 새로 정의한 타입에서는 참조자처럼 동작하지 않는 이유를
알아보겠습니다. <code>Defer</code> 트레이트를 구현하는 것이 스마트 포인터가
알아보겠습니다. <code>Deref</code> 트레이트를 구현하는 것이 스마트 포인터가
참조자와 유사한 방식으로 동작하도록 하는 원리를 탐구해 볼 것입니다.
그리고서 러스트의 <em>역참조 강제 (deref corecion)</em> 기능과 이 기능이
참조자 혹은 스마트 포인터와 함께 동작하도록 하는 방식을 살펴보겠습니다.</p>
Expand Down Expand Up @@ -17918,7 +17917,7 @@ <h3 id="역참조-강제가-가변성과-상호작용하는-법"><a class="heade
지정합니다. <code>Drop</code> 트레이트는 <code>drop</code>이라는 이름의 메서드 하나를 구현해야 하는데 이
메서드는 <code>self</code>에 대한 가변 참조자를 매개변수로 갖습니다. 러스트가 언제 <code>drop</code>을
호출하는지 알아보기 위해서, 지금은 <code>println!</code> 구문을 써서 <code>drop</code>을 구현해 봅시다.</p>
<p>예제 15-4는 러스트가 <code>drop</code> 함수를 호출하는 시점을 보여주기 위해서,
<p>예제 15-14는 러스트가 <code>drop</code> 함수를 호출하는 시점을 보여주기 위해서,
인스턴스가 스코프 밖으로 벗어났을 때 <code>Dropping CustomSmartPointer!</code>를
출력하는 커스텀 기능만을 갖춘 <code>CustomSmartPointer</code> 구조체를 보여줍니다.</p>
<p><span class="filename">파일명: src/main.rs</span></p>
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit 41574ee

Please sign in to comment.