Skip to content

Commit d998e81

Browse files
committed
Merge pull request #19 from marvelm/master
Fix side nav links
2 parents a9754c2 + 9966a00 commit d998e81

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

_layouts/documentation.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<li><a href="#concurrency-and-distribution"><i class="icon-chevron-right"></i> Concurrency and Distribution</a></li>
2727
<li><a href="#what-is-serializable"><i class="icon-chevron-right"></i> What is Serializable</a></li>
2828
<li><a href="#typed-channels"><i class="icon-chevron-right"></i> Typed Channels</a></li>
29-
<li><a href="#rethinking-the-task_layer"><i class="icon-chevron-right"></i> Rethinking the Task Layer</a></li>
29+
<li><a href="#rethinking-the-task-layer"><i class="icon-chevron-right"></i> Rethinking the Task Layer</a></li>
3030
</ul>
3131
</div>
3232
</div>

_layouts/tutorial2.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<div data-spy="affix" data-offset-bottom="290">
2323
<ul class="nav nav-list sidenav">
2424
<li><a href="#introduction"><i class="icon-chevron-right"></i> Introduction</a></li>
25-
<li><a href="#the_network_transport_api"><i class="icon-chevron-right"></i> The network-transport API</a></li>
26-
<li><a href="#writing_the_client"><i class="icon-chevron-right"></i> Writing the client</a></li>
27-
<li><a href="#writing_the_server"><i class="icon-chevron-right"></i> Writing the server</a></li>
25+
<li><a href="#the-network-transport-api"><i class="icon-chevron-right"></i> The network-transport API</a></li>
26+
<li><a href="#writing-the-client"><i class="icon-chevron-right"></i> Writing the client</a></li>
27+
<li><a href="#writing-the-server"><i class="icon-chevron-right"></i> Writing the server</a></li>
2828
<li><a href="#conclusion"><i class="icon-chevron-right"></i> Conclusion</a></li>
2929
</ul>
3030
</div>

tutorials/1ch.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: tutorial
33
categories: tutorial
4-
sections: ['Getting Started', 'Installing from source', 'Creating a node', 'Sending messages', 'Spawning Remote Processes']
4+
sections: ['Getting Started', 'Creating a node', 'Sending messages', 'Spawning Remote Processes']
55
title: 1. Getting Started
66
---
77

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

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

171171
### Spawning Remote Processes

0 commit comments

Comments
 (0)