Skip to content

Commit

Permalink
removed a debugging println (ooops) and added link to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
crowdagger committed Jun 23, 2015
1 parent 717f76c commit 30dac4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "stemmer"
version = "0.1.0"
version = "0.1.1"
authors = ["Elisabeth Henry <liz.henry@ouvaton.org>"]
license = "BSD-2-Clause"
readme = "README.md"
homepage = "/~https://github.com/lady-segfault/stemmer-rs"
documentation = "http://lady-segfault.github.io/stemmer/index.html"
repository = "/~https://github.com/lady-segfault/stemmer-rs"
description = "Stemming library for Rust, using bindings to Snowball C implementation"
links = "stemmer"
Expand Down
1 change: 0 additions & 1 deletion src/stemmer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ extern {

impl Drop for Stemmer {
fn drop(&mut self) {
println!("dropping");
unsafe {
if !self.stemmer.is_null() {
sb_stemmer_delete(self.stemmer);
Expand Down

0 comments on commit 30dac4b

Please sign in to comment.