Skip to content

Commit

Permalink
Merge pull request #46 from t4sk/master
Browse files Browse the repository at this point in the history
fix typo in lesson 3
  • Loading branch information
JoshOrndorff committed Feb 14, 2019
2 parents 0d769cb + 680e441 commit 071d7b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 03-TelephoneNamesAndProcesses/README.md
Expand Up @@ -32,7 +32,7 @@ If you've ever actually played telephone, you know that the message rarely arriv


![Opposites attract](inverse.png) ![Opposites attract](inverse.png)


Did you notice the `*` in `bobb!(*message)`? In rholang there are two kinds of things, "channels" and "processes". There are also ways to convert between the two. Did you notice the `*` in `bob!(*message)`? In rholang there are two kinds of things, "channels" and "processes". There are also ways to convert between the two.


<!-- TODO: Maybe an illustration of arrows labeled * and @ would be better here? --> <!-- TODO: Maybe an illustration of arrows labeled * and @ would be better here? -->


Expand Down
2 changes: 1 addition & 1 deletion 03-TelephoneNamesAndProcesses/telephone3.rho
Expand Up @@ -12,7 +12,7 @@ new alice, bob, stdout(`rho:io:stdout`) in {
| |


// Concurrently, Bob will listens for the message // Concurrently, Bob will listens for the message
for (message <- bobb) { for (message <- bob) {
// Bob is the last player, so he'll announce the message // Bob is the last player, so he'll announce the message
stdout!(*message) stdout!(*message)
} }
Expand Down

0 comments on commit 071d7b4

Please sign in to comment.