Skip to content

Commit f5c1c91

Browse files
committed
identation
1 parent 649062b commit f5c1c91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graph/patterns/operations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ HTTP/1.1 202 Accepted
7373

7474
`forward` operation is modeled as an asynchronous action bound to the Graph `event` entity type because the operation represents a complex business logic processed on the server side.
7575
```
76-
<Action Name="forward" IsBound="true" >
76+
<Action Name="forward" IsBound="true" >
7777
<Parameter Name="bindingParameter" Type="graph.event" />
7878
<Parameter Name="ToRecipients" Type="Collection(graph.recipient)" />
7979
<Parameter Name="Comment" Type="Edm.String" Unicode="false" />
@@ -99,7 +99,7 @@ HTTP/1.1 200 OK
9999
`recent` function will query the most recent historyItems and then pull related activities therefore the operation represents a complex business logic processed on the server side. This operation doesn't change any server data and is a good fit for a function. The function is bound to the collection of `userActivity` entity type.
100100

101101
```
102-
<Function Name="recent" EntitySetPath="activities" IsBound="true">
102+
<Function Name="recent" EntitySetPath="activities" IsBound="true">
103103
<Parameter Name="bindingParameter" Type="Collection(graph.userActivity)" />
104104
<ReturnType Type="Collection(graph.userActivity)" />
105105
</Function>

0 commit comments

Comments
 (0)