From 971ce0a798822b99f82817fb13085b0b793179ce Mon Sep 17 00:00:00 2001 From: David Renshaw Date: Mon, 19 May 2014 15:15:38 -0400 Subject: [PATCH] update example in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9240875..434972c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ You will need [SBT](http://scala-sbt.org). We recommend [this version](https://g $ sbt compile $ echo '(people = [(id = 123, name = "Alice", email = "alice@example.com", employment = (school = "MIT"))])' \ | capnp encode examples/src/main/schema/addressbook.capnp AddressBook \ - | java -cp generator/target/scala-2.11/classes:examples/target/scala-2.11/classes/ \ + | java -cp runtime/target/scala-2.11/classes:examples/target/scala-2.11/classes/ \ org.capnproto.examples.AddressbookMain read ```