Skip to content

Commit f043122

Browse files
committed
Improve description of supported repository types
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent ff73e0b commit f043122

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/frequenz/repo/config/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
Frequenz, defined in
88
[`freq.repo.config.RepositoryType`][freq.repo.config.RepositoryType].
99
10-
- APIs (api)
11-
- Actors (actor)
12-
- Applications (app)
13-
- Libraries (lib)
10+
- actor: SDK actors
11+
- api: gRPC APIs
12+
- app: SDK applications
13+
- lib: General purpose Python libraries
1414
1515
# Common
1616

src/frequenz/repo/config/_core.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ class RepositoryType(enum.Enum):
1010
"""Supported types of repository."""
1111

1212
ACTOR = "actor"
13-
"""Actor repository."""
13+
"""SDK actor repository."""
1414

1515
API = "api"
16-
"""API repository."""
16+
"""gRPC API repository."""
1717

1818
APP = "app"
19-
"""App repository."""
19+
"""SDK application repository."""
2020

2121
LIB = "lib"
22-
"""Library repository."""
22+
"""General purpose library repository."""

0 commit comments

Comments
 (0)