Update internal links in README to point to correct file paths

This commit is contained in:
Stuart Stock
2018-09-26 09:59:38 -05:00
parent 2d8aaede18
commit d6d3958c56

View File

@ -53,8 +53,8 @@ $ ./gradlew nettyExample
## Quickstart
### Client Examples
See [`examples/NioClient.java`](../master/examples/NioClient.java) and
[`examples/NettyClient.java`](../master/examples/NettyClient.java) for examples of how to send a
See [`examples/NioClient.java`](../master/src/main/java/nearenough/examples/NioClient.java) and
[`examples/NettyClient.java`](../master/src/main/java/nearenough/examples/NettyClient.java) for examples of how to send a
request to a Roughtime server and process the response.
### DIY Client
@ -85,7 +85,7 @@ if (client.isResponseValid()) {
System.out.println("Invalid response: " + client.invalidResponseCause().getMessage());
}
```
See the javadocs in [`RoughtimeClient.java`](../master/src/nearenough/client/RoughtimeClient.java)
See the javadocs in [`RoughtimeClient.java`](../master/src/main/java/nearenough/client/RoughtimeClient.java)
for more information.
## Implementation Status