From cdf01ca27ec40f1d5b0cef98f9732dee84d01bc6 Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Tue, 15 Aug 2023 02:26:42 -0700 Subject: [PATCH] Remove rule 3 from docs --- README.md | 2 -- src/lib.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/README.md b/README.md index 076751d..9b9b4e8 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,6 @@ boundary is considered to be just prior to that uppercase character. 2. If multiple uppercase characters are consecutive, they are considered to be within a single word, except that the last will be part of the next word if it is followed by lowercase characters (see rule 1). -3. Non-alphabetic chraracters inherit the case of the preceding character -for use in rules 1 and 2. That is, "HelloWorld" is segmented `Hello|World` whereas "XMLHttpRequest" is segmented `XML|Http|Request`. diff --git a/src/lib.rs b/src/lib.rs index 2092d66..ab8a015 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,8 +14,6 @@ //! 2. If multiple uppercase characters are consecutive, they are considered to //! be within a single word, except that the last will be part of the next word //! if it is followed by lowercase characters (see rule 1). -//! 3. Non-alphabetic chraracters inherit the case of the preceding character -//! for use in rules 1 and 2. //! //! That is, "HelloWorld" is segmented `Hello|World` whereas "XMLHttpRequest" is //! segmented `XML|Http|Request`.