Skip to content

Commit 1d27cca

Browse files
committed
Rectified platyps error
1 parent 8c8ee35 commit 1d27cca

File tree

6 files changed

+7
-13
lines changed

6 files changed

+7
-13
lines changed

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Calendar/Get-MgUserCalendarView.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ Read-only.
4141
### EXAMPLE 1
4242
```powershell
4343
Import-Module Microsoft.Graph.Calendar
44+
4445
# A UPN can also be used as -UserId.
4546
Get-MgUserCalendarView -UserId $userId -Startdatetime "2017-01-01T19:00:00-08:00" -Enddatetime "2017-01-07T19:00:00-08:00"
4647
```
47-
4848
## PARAMETERS
4949

5050
### -All

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ The calendar can be one for a user, or the default calendar of a Microsoft 365 g
8181
### EXAMPLE 1
8282
```
8383
Import-Module Microsoft.Graph.Calendar
84-
```
8584
8685
$params = @{
8786
subject = "Let's go for lunch"
@@ -114,11 +113,10 @@ $params = @{
114113
115114
# A UPN can also be used as -UserId.
116115
New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params
117-
116+
```
118117
### EXAMPLE 2
119118
```
120119
Import-Module Microsoft.Graph.Calendar
121-
```
122120
123121
$params = @{
124122
subject = "Let's go for lunch"
@@ -152,7 +150,7 @@ $params = @{
152150
153151
# A UPN can also be used as -UserId.
154152
New-MgUserCalendarEvent -UserId $userId -CalendarId $calendarId -BodyParameter $params
155-
153+
```
156154
## PARAMETERS
157155

158156
### -AdditionalProperties

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,14 @@ Use this API to create a new calendar in a calendar group for a user.
6161
### EXAMPLE 1
6262
```
6363
Import-Module Microsoft.Graph.Calendar
64-
```
6564
6665
$params = @{
6766
name = "Marketing calendar"
6867
}
6968
7069
# A UPN can also be used as -UserId.
7170
New-MgUserCalendarGroupCalendar -UserId $userId -CalendarGroupId $calendarGroupId -BodyParameter $params
72-
71+
```
7372
## PARAMETERS
7473

7574
### -AdditionalProperties

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ Delete a calendar group other than the default calendar group.
3535
### EXAMPLE 1
3636
```
3737
Import-Module Microsoft.Graph.Calendar
38-
```
3938
4039
# A UPN can also be used as -UserId.
4140
Remove-MgUserCalendarGroup -UserId $userId -CalendarGroupId $calendarGroupId
42-
41+
```
4342
## PARAMETERS
4443

4544
### -CalendarGroupId

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ Delete an attachment from a user calendar event, mail message, or group post.
3535
### EXAMPLE 1
3636
```
3737
Import-Module Microsoft.Graph.Calendar
38-
```
3938
4039
# A UPN can also be used as -UserId.
4140
Remove-MgUserEventAttachment -UserId $userId -EventId $eventId -AttachmentId $attachmentId
42-
41+
```
4342
## PARAMETERS
4443

4544
### -AttachmentId

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ Update the properties of the event object.
7979
### EXAMPLE 1
8080
```
8181
Import-Module Microsoft.Graph.Calendar
82-
```
8382
8483
$params = @{
8584
originalStartTimeZone = "originalStartTimeZone-value"
@@ -101,7 +100,7 @@ $params = @{
101100
102101
# A UPN can also be used as -UserId.
103102
Update-MgUserEvent -UserId $userId -EventId $eventId -BodyParameter $params
104-
103+
```
105104
## PARAMETERS
106105

107106
### -AdditionalProperties

0 commit comments

Comments
 (0)