Skip to content

Commit

Permalink
Update docs/source/quickstart.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
tito committed Aug 17, 2012
1 parent 2aebb55 commit 3e6de4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/quickstart.rst
Expand Up @@ -36,13 +36,13 @@ Automatic recursive inspection
Pyjnius uses Java reflection to give you a new autoclass() if the return type is
not a native type. Let's see this example::

System = autoclass('java.io.System')
System = autoclass('java.lang.System')
System.out.println('Hello World')

We only declared the first System class, but we are able to use all the static
fields and methods naturally. Let's go deeper::

>>> System = autoclass('java.io.System')
>>> System = autoclass('java.lang.System')
>>> System
<class 'jnius.reflect.java.lang.System'>
>>> System.out
Expand Down

0 comments on commit 3e6de4f

Please sign in to comment.