Skip to content

Commit a82ea6a

Browse files
committed
Fix CI
1 parent e13dd21 commit a82ea6a

File tree

4 files changed

+14
-20
lines changed

4 files changed

+14
-20
lines changed

CODE_OF_CONDUCT.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
We as members, contributors, and leaders pledge to make participation in our
66
community a harassment-free experience for everyone, regardless of age, body
77
size, visible or invisible disability, ethnicity, sex characteristics, gender
8-
identity and expression, level of experience, education, socio-economic status,
8+
identity and expression, level of experience, education, socioeconomic status,
99
nationality, personal appearance, race, religion, or sexual identity
1010
and orientation.
1111

@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
1717
Examples of behavior that contributes to a positive environment for our
1818
community include:
1919

20-
* Demonstrating empathy and kindness toward other people
21-
* Being respectful of differing opinions, viewpoints, and experiences
22-
* Giving and gracefully accepting constructive feedback
23-
* Accepting responsibility and apologizing to those affected by our mistakes,
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
2424
and learning from the experience
25-
* Focusing on what is best not just for us as individuals, but for the
25+
- Focusing on what is best not just for us as individuals, but for the
2626
overall community
2727

2828
Examples of unacceptable behavior include:
2929

30-
* The use of sexualized language or imagery, and sexual attention or
30+
- The use of sexualized language or imagery, and sexual attention or
3131
advances of any kind
32-
* Trolling, insulting or derogatory comments, and personal or political attacks
33-
* Public or private harassment
34-
* Publishing others' private information, such as a physical or email
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email
3535
address, without their explicit permission
36-
* Other conduct which could reasonably be considered inappropriate in a
36+
- Other conduct which could reasonably be considered inappropriate in a
3737
professional setting
3838

3939
## Enforcement Responsibilities
@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
106106
### 4. Permanent Ban
107107

108108
**Community Impact**: Demonstrating a pattern of violation of community
109-
standards, including sustained inappropriate behavior, harassment of an
109+
standards, including sustained inappropriate behavior, harassment of an
110110
individual, or aggression toward or disparagement of classes of individuals.
111111

112112
**Consequence**: A permanent ban from any sort of public interaction within

docs/en/src/writing-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Visit [Awesome Plugins][5] for xplr plugin examples.
6969
## Also See
7070

7171
- [Tip: A list of hacks yet to make it as Lua plugins][15]
72-
- [Tip: Some UI and themeing tips][12]
72+
- [Tip: Some UI and theming tips][12]
7373
- [Tutorial: Adding a New Mode][6]
7474
- [Example: Using Environment Variables and Pipes][7]
7575
- [Example: Using Lua Function Calls][8]

src/input.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -731,12 +731,6 @@ impl From<char> for Key {
731731
}
732732
}
733733

734-
impl From<String> for Key {
735-
fn from(string: String) -> Self {
736-
string.into()
737-
}
738-
}
739-
740734
impl From<&str> for Key {
741735
fn from(string: &str) -> Self {
742736
if string.len() == 1 {

src/ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ pub enum Layout {
156156
splits: Vec<Layout>,
157157
},
158158

159-
/// For compatibility only. A better choice is Static or Dymanic layout.
159+
/// For compatibility only. A better choice is Static or Dynamic layout.
160160
CustomContent(Box<CustomContent>),
161161
}
162162

0 commit comments

Comments
 (0)