Point example URLs in README to typeless branch

In the README file, the URLs to code examples are currently pointing to
files in a non-existing master branch. This change updates them to point
to files in an existing branch.
This commit is contained in:
Karl Johansson 2015-07-05 21:31:30 +02:00
parent fa5cf8eb3a
commit f7fa36b80c
1 changed files with 7 additions and 7 deletions

View File

@ -30,19 +30,19 @@ This repository contains a [Racket](http://racket-lang.org/) package,
`marketplace`, which includes `marketplace`, which includes
- the implementation of the `#lang marketplace` language, in the - the implementation of the `#lang marketplace` language, in the
[top directory](https://github.com/tonyg/marketplace/tree/master/). [top directory](https://github.com/tonyg/marketplace/tree/typeless/).
- a TCP echo server example, in - a TCP echo server example, in
[`examples/echo-paper.rkt`](https://github.com/tonyg/marketplace/tree/master/examples/echo-paper.rkt). [`examples/echo-paper.rkt`](https://github.com/tonyg/marketplace/tree/typeless/examples/echo-paper.rkt).
- a TCP chat server example, in - a TCP chat server example, in
[`examples/chat-paper.rkt`](https://github.com/tonyg/marketplace/tree/master/examples/chat-paper.rkt). [`examples/chat-paper.rkt`](https://github.com/tonyg/marketplace/tree/typeless/examples/chat-paper.rkt).
- Haskell, Erlang and Python implementations of the chat server for comparison, in - Haskell, Erlang and Python implementations of the chat server for comparison, in
[`examples/chat.hs`](https://github.com/tonyg/marketplace/tree/master/examples/chat.hs), [`examples/chat.hs`](https://github.com/tonyg/marketplace/tree/typeless/examples/chat.hs),
[`chat.erl`](https://github.com/tonyg/marketplace/tree/master/examples/chat.erl), [`chat.erl`](https://github.com/tonyg/marketplace/tree/typeless/examples/chat.erl),
and and
[`chat.py`](https://github.com/tonyg/marketplace/tree/master/examples/chat.py) [`chat.py`](https://github.com/tonyg/marketplace/tree/typeless/examples/chat.py)
respectively. respectively.
## Compiling and running the code ## Compiling and running the code
@ -63,7 +63,7 @@ This will make `#lang marketplace` available to programs.
At this point, you may load and run any of the example `*.rkt` files At this point, you may load and run any of the example `*.rkt` files
in the in the
[`examples/`](https://github.com/tonyg/marketplace/tree/master/examples/) [`examples/`](https://github.com/tonyg/marketplace/tree/typeless/examples/)
directory. directory.
Note that both the echo server and chat server examples do not print Note that both the echo server and chat server examples do not print