Skip to content

Commit 7542a99

Browse files
pan93412Copilot
andauthored
fix: typo
Co-authored-by: Copilot <[email protected]>
1 parent 6b6662c commit 7542a99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/setup/setup.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func Setup(ctx context.Context, entClient *ent.Client) (*SetupResult, error) {
6666
log.Println("[*] Creating the 'student' scope set…")
6767
studentScopeSet, err = entClient.ScopeSet.Create().
6868
SetSlug(useraccount.StudentScopeSetSlug).
69-
SetDescription("The necessary permissions to use the main app").
69+
SetDescription("The necessary permissions for using the main app").
7070
SetScopes([]string{"me:*", "question:read", "database:read", "ai"}).
7171
Save(ctx)
7272
if err != nil {
@@ -131,7 +131,7 @@ func Setup(ctx context.Context, entClient *ent.Client) (*SetupResult, error) {
131131
log.Println("[*] Creating the 'student' group…")
132132
studentGroup, err = entClient.Group.Create().
133133
SetName(useraccount.StudentGroupSlug).
134-
SetDescription("The group that has the minimum permission for accessing this system.").
134+
SetDescription("The group that has the minimum permissions for accessing this system.").
135135
AddScopeSetIDs(studentScopeSet.ID).
136136
Save(ctx)
137137
if err != nil {

0 commit comments

Comments
 (0)