Skip to content

Commit 68eb028

Browse files
committed
Fix CI
1 parent 69f39c0 commit 68eb028

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In the interest of fostering an open and welcoming environment, we as
66
contributors and maintainers pledge to make participation in our project and
77
our community a harassment-free experience for everyone, regardless of age, body
88
size, disability, ethnicity, sex characteristics, gender identity and expression,
9-
level of experience, education, socio-economic status, nationality, personal
9+
level of experience, education, socioeconomic status, nationality, personal
1010
appearance, race, religion, or sexual identity and orientation.
1111

1212
## Our Standards

starcli/layouts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def render_repo(repo):
8888
lang_table.columns[1].justify = "right"
8989
yield lang_table
9090
yield ""
91-
# Descripion
91+
# Description
9292
description = repo["description"]
9393
if description:
9494
yield Text(description.strip())

tests/test_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_search_stars():
106106
repos = search(languages=["python"], stars="<10")
107107
for repo in repos:
108108
# FIXME: Possibly problem with GitHub API?
109-
assert repo["stargazers_count"] < 10 # Somestimes stars+1
109+
assert repo["stargazers_count"] < 10 # Sometimes stars+1
110110
assert repo["forks"] >= 0
111111
assert (repo["description"] is None) or repo["description"]
112112
assert repo["full_name"].count("/") >= 1

0 commit comments

Comments
 (0)