Skip to content

Commit

Permalink
Corrected typos
Browse files Browse the repository at this point in the history
  • Loading branch information
arindas committed Aug 23, 2021
1 parent edfa46b commit e860988
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Log structured, append only, key value store implementation from [Rust In Action

## Features

- [x] Persitent key value store with a hash table index
- [x] Persistent key value store with a hash table index
- [x] `crc32` checksum validation for every key value pair stored.
- [x] Optionally, persitent index for fast loading
- [x] Optionally, persistent index for fast loading
- [x] Exhaustive, comprehensive tests

## Design enhancements
Expand Down
5 changes: 2 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//!# riakv
//![![ci-tests](https://github.com/arindas/riakv/actions/workflows/ci-tests.yml/badge.svg)](https://github.com/arindas/riakv/actions/workflows/ci-tests.yml)
//![![rustdoc](https://github.com/arindas/riakv/actions/workflows/rustdoc.yml/badge.svg)](https://github.com/arindas/riakv/actions/workflows/rustdoc.yml)
//![![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
Expand All @@ -7,9 +6,9 @@
//!
//!## Features
//!
//!- Persitent key value store with a hash table index
//!- Persistent key value store with a hash table index
//!- `crc32` checksum validation for every key value pair stored.
//!- Optionally, persitent index for fast loading
//!- Optionally, persistent index for fast loading
//!- Exhaustive, comprehensive tests
use std::io;
Expand Down

0 comments on commit e860988

Please sign in to comment.