Skip to content

Commit

Permalink
chore: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
0x6b authored and mgruner committed Mar 16, 2023
1 parent cf4e6e5 commit 0de8283
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- Added support for the DeepL free tier which requires a different API endpoint, which will be automatically selected based on the provided API key.

# 2021-01-29 v0.2.0
- Changed documentation link as docs.rs curently cannot document binaries properly.
- Changed documentation link as docs.rs currently cannot document binaries properly.

# 2021-01-28 v0.1.0
- Initial implementation.
2 changes: 1 addition & 1 deletion src/bin/deepl/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//! help Prints this message or the help of the given subcommand(s)
//! languages Fetch list of available source and target languages
//! translate A subcommand for controlling testing
//! usage-information Fetch imformation about account usage & limits
//! usage-information Fetch information about account usage & limits
//! ```
//!
//! You can call `deepl help translate` to get a detailed reference for the various options of the
Expand Down
2 changes: 1 addition & 1 deletion src/bin/deepl/parse_arguments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub struct Opts {
#[derive(clap::Subcommand, Debug)]
pub enum SubCmd {
Translate(Translate),
/// Fetch imformation about account usage & limits.
/// Fetch information about account usage & limits.
UsageInformation,
/// Fetch list of available source and target languages.
Languages,
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Provides a lightweight wrapper for the DeepL Pro REST API.
//!
//! *If you are looking for the `deepl` commandline utitlity, please refer
//! *If you are looking for the `deepl` commandline utility, please refer
//! to [its documentation](../deepl/index.html) instead.*
//!
//! # Requirements
Expand Down Expand Up @@ -70,7 +70,7 @@ pub struct LanguageInformation {
pub enum SplitSentences {
/// Don't split sentences.
None,
/// Split on punctiation only.
/// Split on punctuation only.
Punctuation,
/// Split on punctuation and newlines.
PunctuationAndNewlines,
Expand Down

0 comments on commit 0de8283

Please sign in to comment.