Skip to content

Commit 302a7ff

Browse files
authored
Move period out of code fences (#8477)
1 parent 116c7ae commit 302a7ff

File tree

27 files changed

+48
-48
lines changed

27 files changed

+48
-48
lines changed

xml/System.ComponentModel.DataAnnotations/ScaffoldColumnAttribute.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
6262
6363
## Examples
64-
The following code example exposes the ProductID column of the Products table in the AdventureWorksLT data base by applying the scaffold property to the ProductID object in the Products partial class and setting it to `true.` It hides the ThumbnailPhotoFileName column by applying the scaffold property to the ThumbnailPhotoFileName object and setting it to `false`.
64+
The following code example exposes the ProductID column of the Products table in the AdventureWorksLT data base by applying the scaffold property to the ProductID object in the Products partial class and setting it to `true`. It hides the ThumbnailPhotoFileName column by applying the scaffold property to the ThumbnailPhotoFileName object and setting it to `false`.
6565
6666
```csharp
6767
[MetadataType(typeof(ProductMetadata))]

xml/System.ComponentModel.DataAnnotations/ScaffoldTableAttribute.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
4747
4848
## Examples
49-
The following code example hides the ErrorLog Table in AdventureWorksLT database by applying the scaffold attribute to the ErrorLog partial class that represents the ErrorLog table. The scaffold property is set to `false.`
49+
The following code example hides the ErrorLog Table in AdventureWorksLT database by applying the scaffold attribute to the ErrorLog partial class that represents the ErrorLog table. The scaffold property is set to `false`.
5050
5151
```csharp
5252
[MetadataType (typeof(ErrorLogMetadata))]

xml/System.Net.PeerToPeer.Collaboration/NameChangedEventArgs.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<format type="text/markdown"><![CDATA[
7676
7777
## Remarks
78-
Unless specified, the default value for this property is `null.`
78+
Unless specified, the default value for this property is `null`.
7979
8080
If the <xref:System.Net.PeerToPeer.Collaboration.PeerEndPoint> is not associated with a contact, this property returns `null`.
8181
@@ -110,7 +110,7 @@
110110
<format type="text/markdown"><![CDATA[
111111
112112
## Remarks
113-
Unless specified, the default value for this property is `null.`
113+
Unless specified, the default value for this property is `null`.
114114
115115
If the <xref:System.Net.PeerToPeer.Collaboration.PeerEndPoint> is not associated with a contact, this property returns `null`.
116116

xml/System.Net.PeerToPeer.Collaboration/Peer.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@
603603
604604
Multiple invitations may be outstanding at any given time. If the <xref:System.Net.PeerToPeer.Collaboration.Peer.InviteAsyncCancel%2A> method is called when an asynchronous operation identified by the `userToken` is not in existence, an exception is thrown. The `userToken` object must be provided since it is used to track a specific asynchronous call. This host application-supplied object is unique for each invite request.
605605
606-
When this method is used, the <xref:System.Net.PeerToPeer.Collaboration.Peer.InviteCompleted> event can still be raised, but the Cancelled property on the associated <xref:System.Net.PeerToPeer.Collaboration.InviteCompletedEventArgs> object will be set to `true.`
606+
When this method is used, the <xref:System.Net.PeerToPeer.Collaboration.Peer.InviteCompleted> event can still be raised, but the Cancelled property on the associated <xref:System.Net.PeerToPeer.Collaboration.InviteCompletedEventArgs> object will be set to `true`.
607607
608608
Calling this method requires a <xref:System.Security.Permissions.PermissionState> of <xref:System.Security.Permissions.PermissionState.Unrestricted>.
609609

xml/System.Runtime.CompilerServices/IsVolatile.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<format type="text/markdown"><![CDATA[
5757
5858
## Remarks
59-
`IsVolatile` is used only in custom modifiers of method signatures to indicate that the field it marks is volatile. Any compiler that imports metadata with one or more fields marked as volatile must use instructions prefixed with `volatile.` to access such fields.
59+
`IsVolatile` is used only in custom modifiers of method signatures to indicate that the field it marks is volatile. Any compiler that imports metadata with one or more fields marked as volatile must use instructions prefixed with `volatile`. to access such fields.
6060
6161
The classes in <xref:System.Runtime.CompilerServices> are for compiler writers' use only.
6262

xml/System.ServiceModel.Channels/Message.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@
648648
<format type="text/markdown"><![CDATA[
649649
650650
## Remarks
651-
<xref:System.ServiceModel.Channels.Message> takes ownership of `envelopeReader.`
651+
<xref:System.ServiceModel.Channels.Message> takes ownership of `envelopeReader`.
652652
653653
This method reads the envelope, buffers all the headers into the header collection, and reads up to but not including the `Body` start tag, and returns the message. If the method call throws an exception, it closes the reader.
654654
@@ -706,7 +706,7 @@
706706
<format type="text/markdown"><![CDATA[
707707
708708
## Remarks
709-
<xref:System.ServiceModel.Channels.Message> takes ownership of `envelopeReader.`
709+
<xref:System.ServiceModel.Channels.Message> takes ownership of `envelopeReader`.
710710
711711
This method reads the envelope, buffers all the headers into the header collection, and reads up to but not including the `Body` start tag, and returns the message. If the method call throws an exception, it closes the reader.
712712

xml/System.Web.Security/ActiveDirectoryMembershipProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@
373373
374374
In order to use the <xref:System.Web.Security.ActiveDirectoryMembershipProvider.ChangePasswordQuestionAndAnswer%2A> method, you must set these additional attributes in your application's configuration file:
375375
376-
- `requiresQuestionAndAnswer` must be `true.`
376+
- `requiresQuestionAndAnswer` must be `true`.
377377
378378
- `attributeMapPasswordQuestion` and `attributeMapPasswordAnswer` must be mapped to attributes in the Active Directory schema.
379379

xml/System.Web.UI.MobileControls/MobileListItem.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<format type="text/markdown"><![CDATA[
8989
9090
## Remarks
91-
This constructor builds a <xref:System.Web.UI.MobileControls.MobileListItem> object with the missing elements set to `null.` The parameterless constructor initializes all properties to `null`.
91+
This constructor builds a <xref:System.Web.UI.MobileControls.MobileListItem> object with the missing elements set to `null`. The parameterless constructor initializes all properties to `null`.
9292
9393
]]></format>
9494
</remarks>

xml/System.Web.UI.WebControls.WebParts/PersonalizationAdministration.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1878,7 +1878,7 @@
18781878
<format type="text/markdown"><![CDATA[
18791879
18801880
## Remarks
1881-
This method resets per-user state in the underlying data store associated with each user contained in the `usernames` parameter for the page specified by `path.`
1881+
This method resets per-user state in the underlying data store associated with each user contained in the `usernames` parameter for the page specified by `path`.
18821882
18831883
It is not an error to attempt to reset nonexistent user state.
18841884

xml/System.Web.UI.WebControls/CreateUserWizard.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
7979
2. Create the user in the data store that the <xref:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider%2A> represents.
8080
81-
3. Disable the user in the store if the <xref:System.Web.UI.WebControls.CreateUserWizard.DisableCreatedUser%2A> property is set to `true.`
81+
3. Disable the user in the store if the <xref:System.Web.UI.WebControls.CreateUserWizard.DisableCreatedUser%2A> property is set to `true`.
8282
8383
You can extend the <xref:System.Web.UI.WebControls.CreateUserWizard> control to accept additional information by adding additional fields, or by adding additional steps before or after the provided templates in the <xref:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep%2A> and <xref:System.Web.UI.WebControls.CreateUserWizard.CompleteStep%2A> properties.
8484
@@ -1718,7 +1718,7 @@ Creates the hierarchy of child controls that make up the control.</summary>
17181718
|------------------------|------------------|------------------------|
17191719
|`UserName`|Any control that implements <xref:System.Web.UI.IEditableTextControl>, including <xref:System.Web.UI.WebControls.TextBox>, or a custom or third-party control.|Required|
17201720
|`Password`|Any control that implements <xref:System.Web.UI.IEditableTextControl>, including <xref:System.Web.UI.WebControls.TextBox>, or a custom or third-party control.|Required if <xref:System.Web.UI.WebControls.CreateUserWizard.AutoGeneratePassword%2A> is set to `false`.|
1721-
|`Email`|Any control that implements <xref:System.Web.UI.IEditableTextControl>, including <xref:System.Web.UI.WebControls.TextBox>, or a custom or third-party control.|Required if <xref:System.Web.UI.WebControls.CreateUserWizard.RequireEmail%2A> is `true.`|
1721+
|`Email`|Any control that implements <xref:System.Web.UI.IEditableTextControl>, including <xref:System.Web.UI.WebControls.TextBox>, or a custom or third-party control.|Required if <xref:System.Web.UI.WebControls.CreateUserWizard.RequireEmail%2A> is `true`.|
17221722
|`ConfirmPassword`|Any control that implements <xref:System.Web.UI.IEditableTextControl>, including <xref:System.Web.UI.WebControls.TextBox>, or a custom or third-party control.|No requirements|
17231723
|`Question`|Any control that implements <xref:System.Web.UI.IEditableTextControl>, including <xref:System.Web.UI.WebControls.TextBox>, or a custom or third-party control.|Optional unless required by membership.|
17241724
|`Answer`|Any control that implements <xref:System.Web.UI.IEditableTextControl>, including <xref:System.Web.UI.WebControls.TextBox>, or a custom or third-party control.|Optional unless required by membership.|

0 commit comments

Comments
 (0)