Skip to content

Commit

Permalink
fix: attempt to fix docs gen
Browse files Browse the repository at this point in the history
  • Loading branch information
dtanglr committed Jul 14, 2024
1 parent 9a2377b commit fbba84d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/Primitively.Abstractions/DecimalAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
/// <code>
/// [Decimal]
/// public partial record struct Example;
/// </code>
/// <code>
///
/// [Decimal(3)]
/// public partial record struct Example;
/// </code>
Expand Down
6 changes: 6 additions & 0 deletions src/Primitively.Abstractions/DoubleAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,20 @@
/// [Double]
/// public partial record struct Example;
/// </code>
/// </example>
/// <example>
/// <code>
/// [Double(Minimum = 1.10d)]
/// public partial record struct Example;
/// </code>
/// </example>
/// <example>
/// <code>
/// [Double(Minimum = -10.10d, Maximum = 10.10d)]
/// public partial record struct Example;
/// </code>
/// </example>
/// <example>
/// <code>
/// [Double(2, Minimum = -10.10d, Maximum = 10.10d)]
/// public partial record struct Example;
Expand Down

0 comments on commit fbba84d

Please sign in to comment.