Skip to content

Commit 4cc35db

Browse files
author
Troy Melhase
committed
Arg.
1 parent 76a2023 commit 4cc35db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ java2python
44
Simple but effective tool to translate Java source code into Python.
55

66

7-
There are [lots of docs](./doc/index.md), [plenty of tests](./test), and [many options](./doc/customizations.md) for controlling code generation.
7+
There are [lots of docs](./java2python/doc/index.md), [plenty of tests](././java2python/test/), and [many options](./java2python/doc/customizations.md) for controlling code generation.
88

9-
I'm in the process of finalizing the documentation and packaging a release. That will be release 0.5 when it's done. If you're looking for old releases, check the [downloads](downloads) link above.
9+
I'm in the process of finalizing the documentation and packaging a release. That will be release 0.5 when it's done. If you're looking for old releases, check the [downloads](./java2python/downloads) link above.
1010

1111
Hello, world example:
1212

1313
$ cat HelloWorld.java
14-
// This is the HelloWorld class with it's single method.
14+
// This is the HelloWorld class with a single method.
1515
class HelloWorld {
1616
public static void main(String[] args) {
1717
System.out.println("Hello, world.");
@@ -23,7 +23,7 @@ Hello, world example:
2323
""" generated source for module HelloWorld
2424

2525
"""
26-
# This is the HelloWorld class with it's single method.
26+
# This is the HelloWorld class with a single method.
2727
class HelloWorld(object):
2828
""" generated source for class HelloWorld
2929

0 commit comments

Comments
 (0)