Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/2019-09/core/anchor.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
keyword: "$anchor"
signature: "String"
value: This keyword must be set to a string starting with a letter and containing letters, digits, hyphens, underscores, colons, or periods
value: "This keyword must be set to a string that starts with a letter and may continue with letters, digits, hyphens, periods, colons, or underscores (matching the regular expression `^[A-Za-z][-A-Za-z0-9.:_]*$`)"
summary: "This keyword is used to create plain name fragments that are not tied to any particular structural location for referencing purposes, which are taken into consideration for static referencing."
kind: [ "identifier" ]
instance: [ "any" ]
Expand Down
2 changes: 1 addition & 1 deletion content/2020-12/core/anchor.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
keyword: "$anchor"
signature: "String"
value: This keyword must be set to a string starting with a letter and containing letters, digits, hyphens, underscores, colons, or periods
value: "This keyword must be set to a string that starts with a letter or underscore and may continue with letters, digits, hyphens, periods, or underscores (matching the regular expression `^[A-Za-z_][-A-Za-z0-9._]*$`)"
summary: "This keyword is used to create plain name fragments that are not tied to any particular structural location for referencing purposes, which are taken into consideration for static referencing."
kind: [ "identifier" ]
instance: [ "any" ]
Expand Down
2 changes: 1 addition & 1 deletion content/2020-12/core/dynamicAnchor.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
keyword: "$dynamicAnchor"
signature: "String"
value: This keyword must be set to a string starting with a letter and containing letters, digits, hyphens, underscores, colons, or periods
value: "This keyword must be set to a string that starts with a letter or underscore and may continue with letters, digits, hyphens, periods, or underscores (matching the regular expression `^[A-Za-z_][-A-Za-z0-9._]*$`)"
summary: "This keyword is used to create plain name fragments that are not tied to any particular structural location for referencing purposes, which are taken into consideration for dynamic referencing."
kind: [ "identifier" ]
instance: [ "any" ]
Expand Down
Loading