-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(crate): Delegate French lower, upper, and sentence case to English
- Loading branch information
Showing
2 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,13 @@ | ||
// SPDX-FileCopyrightText: © 2023 Caleb Maclennan <caleb@alerque.com> | ||
// SPDX-License-Identifier: LGPL-3.0-only | ||
|
||
use crate::{Chunk, StyleGuide}; | ||
use crate::content::{Chunk, Segment}; | ||
Check failure on line 4 in src/fr.rs GitHub Actions / clippyunused import: `Segment`
|
||
use crate::types::StyleGuide; | ||
|
||
pub fn titlecase(_chunk: Chunk, _style: StyleGuide) -> String { | ||
todo!(); | ||
} | ||
|
||
pub fn lowercase(_chunk: Chunk) -> String { | ||
todo!(); | ||
} | ||
pub use crate::en::lowercase; | ||
pub use crate::en::sentencecase; | ||
pub use crate::en::uppercase; | ||
|
||
pub fn uppercase(_chunk: Chunk) -> String { | ||
todo!(); | ||
} | ||
|
||
pub fn sentencecase(_chunk: Chunk) -> String { | ||
pub fn titlecase(_chunk: Chunk, _style: StyleGuide) -> String { | ||
todo!(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters