Skip to content

Commit ade31a8

Browse files
committed
Update README.md
1 parent 7446d80 commit ade31a8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rust-9p
22
=====
3-
Filesystems library using 9P2000.L protocol, an extended variant of 9P from Plan 9.
3+
Tokio-based asynchronous filesystems library using 9P2000.L protocol, an extended variant of 9P from Plan 9.
44

55
[![Build Status](https://travis-ci.org/pfpacket/rust-9p.svg?branch=master)](https://travis-ci.org/pfpacket/rust-9p)
66

@@ -12,15 +12,15 @@ Use Rust nightly.
1212

1313

1414
## Usage
15-
Add this to your crate:
15+
Add the following to your crate:
1616

1717
```rust
1818
extern crate rs9p;
1919
```
2020

2121

2222
## unpfs
23-
unpfs is an example file server which just exports your filesystem.
23+
`unpfs` is the reference implementation of a file server which exports your filesystem.
2424
You can build unpfs with the following commands below:
2525

2626
```bash
@@ -32,7 +32,6 @@ and run unpfs with the following command to export `/exportdir`:
3232
```bash
3333
# TCP
3434
cargo run --release 'tcp!0.0.0.0!564' /exportdir
35-
3635
# or
3736
./target/release/unpfs 'tcp!0.0.0.0!564' /exportdir
3837

0 commit comments

Comments
 (0)