Skip to content

Commit dd4dc37

Browse files
Bump docfx from 2.74.0 to 2.76.0 (#1524)
1 parent b39e2cc commit dd4dc37

File tree

7 files changed

+34
-15
lines changed

7 files changed

+34
-15
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
]
2222
},
2323
"docfx": {
24-
"version": "2.74.0",
24+
"version": "2.76.0",
2525
"commands": [
2626
"docfx"
2727
]

docs/docfx.json

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"internals/**.md",
2525
"toc.yml",
2626
"*.md"
27+
],
28+
"exclude": [
29+
"**/README.md"
2730
]
2831
}
2932
],

docs/request-examples/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
_disableToc: true
3+
---
4+
15
# Example requests
26

37
These requests have been generated against the "GettingStarted" application and are updated on every deployment.

docs/request-examples/toc.md

Whitespace-only changes.

src/JsonApiDotNetCore/QueryStrings/FieldChains/FieldChainPattern.cs

+16-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ internal FieldChainPattern(FieldTypes choices, bool atLeastOne, bool atMostOne,
4949
/// </summary>
5050
/// <remarks>
5151
/// Patterns are similar to regular expressions, but a lot simpler. They consist of a sequence of terms. A term can be a single character or a character
52-
/// choice, optionally followed by a quantifier.
52+
/// choice. A term is optionally followed by a quantifier.
5353
/// <p>
5454
/// The following characters can be used:
5555
/// <list type="table">
@@ -58,18 +58,26 @@ internal FieldChainPattern(FieldTypes choices, bool atLeastOne, bool atMostOne,
5858
/// <description>
5959
/// Matches a to-many relationship.
6060
/// </description>
61+
/// </item>
62+
/// <item>
6163
/// <term>O</term>
6264
/// <description>
6365
/// Matches a to-one relationship.
6466
/// </description>
67+
/// </item>
68+
/// <item>
6569
/// <term>R</term>
6670
/// <description>
6771
/// Matches a relationship.
6872
/// </description>
73+
/// </item>
74+
/// <item>
6975
/// <term>A</term>
7076
/// <description>
7177
/// Matches an attribute.
7278
/// </description>
79+
/// </item>
80+
/// <item>
7381
/// <term>F</term>
7482
/// <description>
7583
/// Matches a field.
@@ -86,15 +94,19 @@ internal FieldChainPattern(FieldTypes choices, bool atLeastOne, bool atMostOne,
8694
/// <item>
8795
/// <term>?</term>
8896
/// <description>
89-
/// Matches its term zero or one times.
97+
/// Matches its preceding term zero or one times.
9098
/// </description>
99+
/// </item>
100+
/// <item>
91101
/// <term>*</term>
92102
/// <description>
93-
/// Matches its term zero or more times.
103+
/// Matches its preceding term zero or more times.
94104
/// </description>
105+
/// </item>
106+
/// <item>
95107
/// <term>+</term>
96108
/// <description>
97-
/// Matches its term one or more times.
109+
/// Matches its preceding term one or more times.
98110
/// </description>
99111
/// </item>
100112
/// </list>

src/JsonApiDotNetCore/Serialization/Request/Adapters/IDocumentAdapter.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ public interface IDocumentAdapter
1313
/// <list type="bullet">
1414
/// <item>
1515
/// <description>
16-
/// <code><![CDATA[IList<OperationContainer>]]></code> (operations)
16+
/// <c><![CDATA[IList<OperationContainer>]]></c> (operations)
1717
/// </description>
1818
/// </item>
1919
/// <item>
2020
/// <description>
21-
/// <code><![CDATA[ISet<IIdentifiable>]]></code> (to-many relationship, unknown relationship)
21+
/// <c><![CDATA[ISet<IIdentifiable>]]></c> (to-many relationship, unknown relationship)
2222
/// </description>
2323
/// </item>
2424
/// <item>
2525
/// <description>
26-
/// <code><![CDATA[IIdentifiable]]></code> (resource, to-one relationship)
26+
/// <c><![CDATA[IIdentifiable]]></c> (resource, to-one relationship)
2727
/// </description>
2828
/// </item>
2929
/// <item>
3030
/// <description>
31-
/// <code><![CDATA[null]]></code> (to-one relationship)
31+
/// <c><![CDATA[null]]></c> (to-one relationship)
3232
/// </description>
3333
/// </item>
3434
/// </list>

src/JsonApiDotNetCore/Serialization/Response/IResponseModelAdapter.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,32 @@ public interface IResponseModelAdapter
1212
/// <list type="bullet">
1313
/// <item>
1414
/// <description>
15-
/// <code><![CDATA[IEnumerable<IIdentifiable>]]></code>
15+
/// <c><![CDATA[IEnumerable<IIdentifiable>]]></c>
1616
/// </description>
1717
/// </item>
1818
/// <item>
1919
/// <description>
20-
/// <code><![CDATA[IIdentifiable]]></code>
20+
/// <c><![CDATA[IIdentifiable]]></c>
2121
/// </description>
2222
/// </item>
2323
/// <item>
2424
/// <description>
25-
/// <code><![CDATA[null]]></code>
25+
/// <c><![CDATA[null]]></c>
2626
/// </description>
2727
/// </item>
2828
/// <item>
2929
/// <description>
30-
/// <code><![CDATA[IEnumerable<OperationContainer?>]]></code>
30+
/// <c><![CDATA[IEnumerable<OperationContainer?>]]></c>
3131
/// </description>
3232
/// </item>
3333
/// <item>
3434
/// <description>
35-
/// <code><![CDATA[IEnumerable<ErrorObject>]]></code>
35+
/// <c><![CDATA[IEnumerable<ErrorObject>]]></c>
3636
/// </description>
3737
/// </item>
3838
/// <item>
3939
/// <description>
40-
/// <code><![CDATA[ErrorObject]]></code>
40+
/// <c><![CDATA[ErrorObject]]></c>
4141
/// </description>
4242
/// </item>
4343
/// </list>

0 commit comments

Comments
 (0)