Skip to content

Commit ce541e3

Browse files
committedMar 12, 2025·
Fix hosted service syntax: match exact indentation pattern with 6 spaces
1 parent 5d220d4 commit ce541e3

File tree

1 file changed

+5
-5
lines changed
  • showcases/data/Lambda/Activator - Hosted service

1 file changed

+5
-5
lines changed
 

‎showcases/data/Lambda/Activator - Hosted service/code.pure

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ HostedService model::BasicHostedService
1414
{
1515
pattern : '/api/greet/{name}';
1616
ownership : UserList { users: [
17-
'user1',
18-
'user2'
19-
] };
17+
'user1',
18+
'user2'
19+
] };
2020
function : model::greet(String[1]):String[1];
2121
documentation : 'A simple hosted service';
2222
autoActivateUpdates : true;
@@ -35,8 +35,8 @@ HostedService model::AdvancedHostedService
3535
{
3636
pattern : '/api/advanced/{param}';
3737
ownership : UserList { users: [
38-
'admin'
39-
] };
38+
'admin'
39+
] };
4040
function : model::processData(String[1]):String[1];
4141
documentation : 'Advanced hosted service';
4242
autoActivateUpdates : true;

0 commit comments

Comments
 (0)
Please sign in to comment.