Skip to content

Commit

Permalink
Merge pull request twitter#15 from scalajp/fixTypo
Browse files Browse the repository at this point in the history
fix typo in a sample code for Offer.
  • Loading branch information
mariusae committed Jul 26, 2012
2 parents b267f02 + 5824123 commit 3e20c9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion effectivescala-ja.mo
Expand Up @@ -1139,7 +1139,7 @@ OfferとBrokerは、これに基づいて、三つの重要な考え方を取り
.LP そして、二つのOfferを生成するとき、

val b: Broker[Int]
val sendOf = send(1)
val sendOf = b.send(1)
val recvOf = b.recv

.LP <code>sendOf</code>と<code>recvOf</code>はどちらも同期化されており、
Expand Down
2 changes: 1 addition & 1 deletion effectivescala.mo
Expand Up @@ -1528,7 +1528,7 @@ A `Broker` coordinates the exchange of values through offers -- it is the channe
.LP so that, when creating two offers

val b: Broker[Int]
val sendOf = send(1)
val sendOf = b.send(1)
val recvOf = b.recv

.LP and <code>sendOf</code> and <code>recvOf</code> are both synchronized
Expand Down
4 changes: 2 additions & 2 deletions header-jp.html.inc
Expand Up @@ -18,7 +18,7 @@

<style>
body {
font-family: times, serif;
font-family: "ff-meta-serif-web-pro", times, serif;
margin: 0 1.0in 0 1.0in;
/* line-height: 1.3em;*/
}
Expand Down Expand Up @@ -56,7 +56,7 @@
}

h1 {
font-family: sans-serif;
font-family: "prenton-condensed";
}

h2 {
Expand Down

0 comments on commit 3e20c9b

Please sign in to comment.