File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Generator/Sources/Generator Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
steps :
10
10
- name : Select Xcode
11
- run : sudo xcode-select -switch /Applications/Xcode_11.1 .app
11
+ run : sudo xcode-select -switch /Applications/Xcode_12 .app
12
12
- uses : actions/checkout@v1
13
13
- name : Build
14
14
run : swift build -v
Original file line number Diff line number Diff line change @@ -623,7 +623,7 @@ extension Attribute {
623
623
)
624
624
625
625
static let rel2 = Attribute (
626
- name: " rel2 " ,
626
+ name: " rel " ,
627
627
description: " Relationship between the document containing the hyperlink and the destination resource. "
628
628
)
629
629
Original file line number Diff line number Diff line change @@ -6010,7 +6010,7 @@ public func li(
6010
6010
/// - media: Applicable media.
6011
6011
/// - nonce: Cryptographic nonce used in Content Security Policy checks [CSP].
6012
6012
/// - referrerpolicy: Referrer policy for fetches initiated by the element.
6013
- /// - rel2 : Relationship between the document containing the hyperlink and the destination resource.
6013
+ /// - rel : Relationship between the document containing the hyperlink and the destination resource.
6014
6014
/// - role: ARIA semantic role.
6015
6015
/// - sizes: Sizes of the icons (for `icon`).
6016
6016
/// - slot: The element's desired slot.
@@ -6050,7 +6050,7 @@ public func link(
6050
6050
media: String ? = nil ,
6051
6051
nonce: String ? = nil ,
6052
6052
referrerpolicy: String ? = nil ,
6053
- rel2 : String ? = nil ,
6053
+ rel : String ? = nil ,
6054
6054
role: String ? = nil ,
6055
6055
sizes: String ? = nil ,
6056
6056
slot: String ? = nil ,
@@ -6092,7 +6092,7 @@ public func link(
6092
6092
attributes [ " media " ] = media
6093
6093
attributes [ " nonce " ] = nonce
6094
6094
attributes [ " referrerpolicy " ] = referrerpolicy
6095
- attributes [ " rel2 " ] = rel2
6095
+ attributes [ " rel " ] = rel
6096
6096
attributes [ " role " ] = role
6097
6097
attributes [ " sizes " ] = sizes
6098
6098
attributes [ " slot " ] = slot
You can’t perform that action at this time.
0 commit comments