Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _layouts/documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<li><a href="#concurrency-and-distribution"><i class="icon-chevron-right"></i> Concurrency and Distribution</a></li>
<li><a href="#what-is-serializable"><i class="icon-chevron-right"></i> What is Serializable</a></li>
<li><a href="#typed-channels"><i class="icon-chevron-right"></i> Typed Channels</a></li>
<li><a href="#rethinking-the-task_layer"><i class="icon-chevron-right"></i> Rethinking the Task Layer</a></li>
<li><a href="#rethinking-the-task-layer"><i class="icon-chevron-right"></i> Rethinking the Task Layer</a></li>
</ul>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions _layouts/tutorial2.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<div data-spy="affix" data-offset-bottom="290">
<ul class="nav nav-list sidenav">
<li><a href="#introduction"><i class="icon-chevron-right"></i> Introduction</a></li>
<li><a href="#the_network_transport_api"><i class="icon-chevron-right"></i> The network-transport API</a></li>
<li><a href="#writing_the_client"><i class="icon-chevron-right"></i> Writing the client</a></li>
<li><a href="#writing_the_server"><i class="icon-chevron-right"></i> Writing the server</a></li>
<li><a href="#the-network-transport-api"><i class="icon-chevron-right"></i> The network-transport API</a></li>
<li><a href="#writing-the-client"><i class="icon-chevron-right"></i> Writing the client</a></li>
<li><a href="#writing-the-server"><i class="icon-chevron-right"></i> Writing the server</a></li>
<li><a href="#conclusion"><i class="icon-chevron-right"></i> Conclusion</a></li>
</ul>
</div>
Expand Down
6 changes: 3 additions & 3 deletions tutorials/1ch.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: tutorial
categories: tutorial
sections: ['Getting Started', 'Installing from source', 'Creating a node', 'Sending messages', 'Spawning Remote Processes']
sections: ['Getting Started', 'Creating a node', 'Sending messages', 'Spawning Remote Processes']
title: 1. Getting Started
---

Expand Down Expand Up @@ -119,7 +119,7 @@ main = do
Right t <- createTransport "127.0.0.1" "10501" defaultTCPParameters
node <- newLocalNode t initRemoteTable
forkProcess node $ do
-- Spawn another worker on the local node
-- Spawn another worker on the local node
echoPid <- spawnLocal $ forever $ do
-- Test our matches in order against each message in the queue
receiveWait [match logMessage, match replyBack]
Expand Down Expand Up @@ -165,7 +165,7 @@ tries again.
### Serializable Data

Processes may send any datum whose type implements the `Serializable` typeclass,
which is done indirectly by deriving `Binary` and `Typeable`. Implementations are
which is done indirectly by deriving `Binary` and `Typeable`. Implementations are
provided for most of Cloud Haskell's primitives and various common data types.

### Spawning Remote Processes
Expand Down