Skip to content

Commit 19cb5ae

Browse files
authored
Fix broken Wiki link to DRY (#8)
This commit updates `introducing-pkl.adoc` to fix a broken Wiki link to the page on DRY. The link contains `'`, which won't work as is, and needs to be replaced by `%27`.
1 parent d26f166 commit 19cb5ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blog/modules/ROOT/pages/introducing-pkl.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ For example, their lack of expressivity means that code often gets repeated.
2222
Additionally, it can be easy to make configuration errors, because these formats do not provide any validation of their own.
2323

2424
To address these shortcomings, sometimes formats get enhanced by ancillary tools that add special logic.
25-
For example, perhaps there’s a need to make code more link:https://en.wikipedia.org/wiki/Don't_repeat_yourself[pass:[<abbr title="Don't Repeat Yourself">DRY</abbr>]], so a special property is introduced that understands how to resolve references, and merge objects together.
25+
For example, perhaps there’s a need to make code more link:https://en.wikipedia.org/wiki/Don%27t_repeat_yourself[pass:[<abbr title="Don't Repeat Yourself">DRY</abbr>]], so a special property is introduced that understands how to resolve references, and merge objects together.
2626
Alternatively, there’s a need to guard against validation errors, so some new way is created to validate a configuration value against an expected type.
2727
Before long, these formats almost become programming languages, but ones that are hard to understand and hard to write.
2828

0 commit comments

Comments
 (0)