diff options
author | Phil Burk <[email protected]> | 2016-03-23 09:26:52 -0700 |
---|---|---|
committer | Phil Burk <[email protected]> | 2016-03-23 09:26:52 -0700 |
commit | eeafc364cbd39edc794748a0f2c0626e09ee9bb5 (patch) | |
tree | 5f4bef6827f6bd9c29b1ccdf8f2a1fde5000381c /src/com/jsyn/JSyn.java | |
parent | 8b705f45ff6618383c2df8d7bd14bd2b61e21cee (diff) |
Add doc target to ant build.xml
Also fixed Javadoc errors.
Diffstat (limited to 'src/com/jsyn/JSyn.java')
-rw-r--r-- | src/com/jsyn/JSyn.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/com/jsyn/JSyn.java b/src/com/jsyn/JSyn.java index 6185bb0..e42d141 100644 --- a/src/com/jsyn/JSyn.java +++ b/src/com/jsyn/JSyn.java @@ -24,7 +24,9 @@ import com.jsyn.engine.SynthesisEngine; /** * JSyn Synthesizer for Java. Use this factory class to create a synthesizer. This code demonstrates - * how to start playing a sine wave: <code><pre> + * how to start playing a sine wave: + * + * <pre><code> // Create a context for the synthesizer. synth = JSyn.createSynthesizer(); @@ -46,7 +48,7 @@ import com.jsyn.engine.SynthesisEngine; // We only need to start the LineOut. It will pull data from the oscillator. lineOut.start(); - </pre></code> +</code> </pre> * * @author Phil Burk (C) 2010 Mobileer Inc */ |