From 9c7d8502984fd01725830665a7a3baa511c97179 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Thu, 20 May 2021 22:21:27 -0400 Subject: [PATCH] Typo fix --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d50875d..6d8789c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "skyrim-cell-dump" version = "0.1.0" edition = "2018" authors = ["Tyler Hallada "] -description = "Library and binary for parsing Skyrim plugin files and extracing CELL data" +description = "Library and binary for parsing Skyrim plugin files and extracting CELL data" repository = "https://github.com/thallada/skyrim-cell-dump" readme = "README.md" license = "MIT" diff --git a/README.md b/README.md index a47e26b..58c4743 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # skyrim-cell-dump -Library and binary for parsing Skyrim plugin files and extracing CELL data. +Library and binary for parsing Skyrim plugin files and extracting CELL data. The main objective of this library is to extract the form ID and X and Y coordinates of every exterior cell a plugin edits as fast as possible, ignoring the rest of the plugin. diff --git a/src/lib.rs b/src/lib.rs index e7b91bf..eb8e12d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! # Skyrim Cell Dump //! -//! `skyrim-cell-dump` is a library for parsing Skyrim plugin files and extracing CELL data into Rust structs. +//! `skyrim-cell-dump` is a library for parsing Skyrim plugin files and extracting CELL data into Rust structs. #[macro_use] extern crate bitflags;