Skip to content

Commit 8c8ee35

Browse files
committed
Rectified maml error
1 parent 6b9ae04 commit 8c8ee35

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendar.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,12 @@ Create a new calendar for a user.
6161
### EXAMPLE 1
6262
```
6363
Import-Module Microsoft.Graph.Calendar
64-
```
65-
6664
$params = @{
6765
name = "Volunteer"
6866
}
69-
7067
# A UPN can also be used as -UserId.
7168
New-MgUserCalendar -UserId $userId -BodyParameter $params
72-
69+
```
7370
## PARAMETERS
7471

7572
### -AdditionalProperties

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/New-MgUserCalendarGroup.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ Use this API to create a new CalendarGroup.
4949
### EXAMPLE 1
5050
```
5151
Import-Module Microsoft.Graph.Calendar
52-
5352
$params = @{
5453
name = "Personal events"
5554
}

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Remove-MgUserEvent.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,9 @@ If the event is a meeting, deleting the event on the organizer's calendar sends
3737
### EXAMPLE 1
3838
```
3939
Import-Module Microsoft.Graph.Calendar
40-
```
41-
4240
# A UPN can also be used as -UserId.
4341
Remove-MgUserEvent -UserId $userId -EventId $eventId
44-
42+
```
4543
## PARAMETERS
4644

4745
### -EventId

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Update-MgUserCalendarGroup.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,12 @@ Update the properties of calendargroup object.
4949
### EXAMPLE 1
5050
```
5151
Import-Module Microsoft.Graph.Calendar
52-
```
53-
5452
$params = @{
5553
name = "name-value"
5654
}
57-
5855
# A UPN can also be used as -UserId.
5956
Update-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params
60-
57+
```
6158
## PARAMETERS
6259

6360
### -AdditionalProperties

0 commit comments

Comments
 (0)