@@ -24,7 +24,8 @@ public enum JsonApiEndpointsCopy
2424 GetSingle = 1 << 1 ,
2525
2626 /// <summary>
27- /// Represents the endpoint to get a secondary resource or collection of secondary resources. Example: <code><![CDATA[
27+ /// Represents the endpoint to get a secondary resource or collection of secondary resources. Example:
28+ /// <code><![CDATA[
2829 /// GET /articles/1/author HTTP/1.1
2930 /// ]]></code>
3031 /// </summary>
@@ -41,7 +42,8 @@ public enum JsonApiEndpointsCopy
4142 GetRelationship = 1 << 3 ,
4243
4344 /// <summary>
44- /// Represents the endpoint to creates a new resource with attributes, relationships or both. Example: <code><![CDATA[
45+ /// Represents the endpoint to creates a new resource with attributes, relationships or both. Example:
46+ /// <code><![CDATA[
4547 /// POST /articles HTTP/1.1
4648 /// ]]></code>
4749 /// </summary>
@@ -55,14 +57,16 @@ public enum JsonApiEndpointsCopy
5557 PostRelationship = 1 << 5 ,
5658
5759 /// <summary>
58- /// Represents the endpoint to update the attributes and/or relationships of an existing resource. Example: <code><![CDATA[
60+ /// Represents the endpoint to update the attributes and/or relationships of an existing resource. Example:
61+ /// <code><![CDATA[
5962 /// PATCH /articles/1
6063 /// ]]></code>
6164 /// </summary>
6265 Patch = 1 << 6 ,
6366
6467 /// <summary>
65- /// Represents the endpoint to perform a complete replacement of a relationship on an existing resource. Example: <code><![CDATA[
68+ /// Represents the endpoint to perform a complete replacement of a relationship on an existing resource. Example:
69+ /// <code><![CDATA[
6670 /// PATCH /articles/1/relationships/author HTTP/1.1
6771 /// ]]></code> Example:
6872 /// <code><![CDATA[
@@ -79,7 +83,8 @@ public enum JsonApiEndpointsCopy
7983 Delete = 1 << 8 ,
8084
8185 /// <summary>
82- /// Represents the endpoint to remove resources from a to-many relationship. Example: <code><![CDATA[
86+ /// Represents the endpoint to remove resources from a to-many relationship. Example:
87+ /// <code><![CDATA[
8388 /// DELETE /articles/1/relationships/revisions
8489 /// ]]></code>
8590 /// </summary>
0 commit comments