Skip to content

Commit

Permalink
Doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklan committed Feb 9, 2016
1 parent baecaec commit a8e3ea1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.0.1"
authors = ["Nick Lanham <[email protected]>"]
homepage = "https://github.com/RustAudio/rimd"
repository = "https://github.com/RustAudio/rimd"
documentation = "https://nicklan.github.io/rimd/target/doc/rimd/index.html"
readme = "README.md"
keywords = ["midi", "smf", "music", "audio", "mid"]
license = "MIT"
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
//! utility methods for accessing the various pieces of a message, and
//! for constructing new messages.
//!
//! For example usage see the bin directory.
//!
//! For a description of the underlying format of midi messages see:<br/>
//! https://www.midi.org/techspecs/midimessages.php<br/>
//! For a description of the underlying format of meta messages see:<br/>
Expand Down
4 changes: 2 additions & 2 deletions src/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ use ::{Event,AbsoluteEvent,MetaEvent,MetaCommand,SMFFormat};
/// ```
/// use rimd::{SMF,SMFWriter};
/// // Create smf
/// // let writer = SMFWriter::from_smf(smf);
/// // let result = writer.write_to_file(Path::new("/path/to/file.smf"));
/// let writer = SMFWriter::from_smf(smf);
/// let result = writer.write_to_file(Path::new("/path/to/file.smf"));
/// // handle result
pub struct SMFWriter {
format: u16,
Expand Down

0 comments on commit a8e3ea1

Please sign in to comment.