diff --git a/README.md b/README.md index e04fbbc..b0888d4 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Only projects that are stable and useful to users are added. Projects that do no ### Command-line argument parsing -* [docopt/docopt.rs](https://github.com/docopt/docopt.rs) — a [DocOpt](http://docopt.org) port to Rust +* [docopt/docopt.rs](https://github.com/docopt/docopt.rs) — a Rust implementation of [DocOpt](http://docopt.org) * [wycats/hammer.rs](https://github.com/wycats/hammer.rs) ### Compression @@ -128,7 +128,7 @@ Only projects that are stable and useful to users are added. Projects that do no ### Testing -* [BurntSushi/quickcheck](https://github.com/BurntSushi/quickcheck) — [QuickCheck](http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1) in Rust [](https://travis-ci.org/BurntSushi/quickcheck) +* [BurntSushi/quickcheck](https://github.com/BurntSushi/quickcheck) — a Rust implementation of [QuickCheck](http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1) [](https://travis-ci.org/BurntSushi/quickcheck) * [farcaller/shiny](https://github.com/farcaller/shiny) — a fancy syntax similar to ruby's rspec or Objective-C's kiwi ### Web programming diff --git a/generate_markdown_files.py b/generate_markdown_files.py index c301292..87ab37f 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -52,7 +52,7 @@ DATA = \ }, "docopt/docopt.rs": { "url": "https://github.com/docopt/docopt.rs", - "descr": "a " + md_link('DocOpt', 'http://docopt.org') + " port to Rust" + "descr": "a Rust implementation of " + md_link('DocOpt', 'http://docopt.org') }, "wycats/hammer.rs": { "url": "https://github.com/wycats/hammer.rs" @@ -227,7 +227,7 @@ DATA = \ }, "BurntSushi/quickcheck": { "url": "https://github.com/BurntSushi/quickcheck", - "descr": md_link('QuickCheck', 'http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1') + ' in Rust', + "descr": 'a Rust implementation of ' + md_link('QuickCheck', 'http://www.haskell.org/haskellwiki/Introduction_to_QuickCheck1'), "travis_url": "https://travis-ci.org/BurntSushi/quickcheck", "travis_badge": "https://travis-ci.org/BurntSushi/quickcheck.png?branch=master" },