From 0077ee43e4ec65ccc5bed9e8d7ee33e444098c77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Harabie=C5=84?= Date: Wed, 20 Jun 2018 17:58:45 +0200 Subject: [PATCH] Improve README a bit more. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eea3772..0bf00da 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ and this to your crate root: extern crate fatfs; -You can start using library now: +You can start using the `fatfs` library now: let img_file = File::open("fat.img")?; let buf_stream = fatfs::BufStream::new(img_file); @@ -40,7 +40,7 @@ You can start using library now: let mut file = root_dir.create_file("hello.txt")?; file.write_all(b"Hello World!")?; -See more examples in `examples` subdirectory. +See more examples in the `examples` subdirectory. no_std usage ------------