Skip to content

Commit 59b59cf

Browse files
committed
Renamed “in user spaces” to “in user accounts.”
1 parent 5d7f6d8 commit 59b59cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/repositories-total.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h3>Repositories (Total)</h3>
1919
<div class="col-aside">
2020
<div class="info-box">
2121
<p>
22-
The number of repositories in total, in organizations, and in user spaces.
22+
The number of repositories in total, in organizations, and in user accounts.
2323
</p>
2424
</div>
2525
</div>

updater/reports/ReportRepositoryHistory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ def subquery(self, userType):
3131

3232
return query
3333

34-
# Collects the number of repositories in total, in organizations, and in user spaces
34+
# Collects the number of repositories in total, in organizations, and in user accounts
3535
def query(self):
3636
query = '''
3737
SELECT
3838
"''' + str(self.yesterday()) + '''" AS date,
3939
total.count AS total,
4040
organizationSpace.count AS "in organizations",
41-
userSpace.count AS "in user spaces"
41+
userSpace.count AS "in user accounts"
4242
FROM
4343
(''' + self.subquery(None) + ''') AS total,
4444
(''' + self.subquery("Organization") + ''') AS organizationSpace,

0 commit comments

Comments
 (0)