Skip to content

Commit 34f19c1

Browse files
committed
full links
1 parent 2fecce4 commit 34f19c1

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

v2/Generator/MultiGeneratorV2.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ public string[] SourceNoRSCG()
118118
if (File.Exists(nameFile))
119119
{
120120
var text=await File.ReadAllTextAsync(nameFile);
121+
text = text.Replace("(./BoolParameterGenerator.Github.Example/", $"({d.Generator!.Source}/BoolParameterGenerator.Github.Example/");
121122
text = text.Replace("(docs/", $"({d.Generator!.Source}/docs/");
122123
text = text.Replace("(img/", $"({d.Generator!.Source}/img/");
123124
text = text.Replace("(./Images/", $"({d.Generator!.Source}/Images/");

v2/rscg_examples_site/docs/RSCG-Examples/BoolParameterGenerator.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ public partial class MyBoolEnum \{ }
144144

145145
For detailed examples illustrating the benefits of BoolParameterGenerator, see the following:
146146

147-
- **Good Examples: Caller IntelliSense**[CallerIntellisenseGoodExamples.cs](./BoolParameterGenerator.Github.Example/CallerIntellisenseGoodExamples.cs)
148-
- **Good Examples: Implementation Patterns**[ImplementationGoodExamples.cs](./BoolParameterGenerator.Github.Example/ImplementationGoodExamples.cs)
149-
- **Bad Examples: Caller IntelliSense Pitfalls**[CallerIntellisenseBadExamples.cs](./BoolParameterGenerator.Github.Example/CallerIntellisenseBadExamples.cs)
150-
- **Bad Examples: Implementation Pitfalls**[ImplementationBadExamples.cs](./BoolParameterGenerator.Github.Example/ImplementationBadExamples.cs)
147+
- **Good Examples: Caller IntelliSense**[CallerIntellisenseGoodExamples.cs](https://github.com/9swampy/BoolEnumGenerator/BoolParameterGenerator.Github.Example/CallerIntellisenseGoodExamples.cs)
148+
- **Good Examples: Implementation Patterns**[ImplementationGoodExamples.cs](https://github.com/9swampy/BoolEnumGenerator/BoolParameterGenerator.Github.Example/ImplementationGoodExamples.cs)
149+
- **Bad Examples: Caller IntelliSense Pitfalls**[CallerIntellisenseBadExamples.cs](https://github.com/9swampy/BoolEnumGenerator/BoolParameterGenerator.Github.Example/CallerIntellisenseBadExamples.cs)
150+
- **Bad Examples: Implementation Pitfalls**[ImplementationBadExamples.cs](https://github.com/9swampy/BoolEnumGenerator/BoolParameterGenerator.Github.Example/ImplementationBadExamples.cs)
151151

152152
These demonstrate why replacing raw `bool` parameters with strongly typed proxies enhances readability, API clarity, and maintainability.
153153

50 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)