Skip to content

Commit

Permalink
self -> default
Browse files Browse the repository at this point in the history
  • Loading branch information
tib committed Mar 15, 2022
1 parent 0497c23 commit e07678a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/SwiftHtml/Attributes/Target.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public enum TargetFrame {
/// Opens the linked document in a new window or tab
case blank
/// Opens the linked document in the same frame as it was clicked (this is default)
case `self`
case `default`
/// Opens the linked document in the parent frame
case parent
/// Opens the linked document in the full body of the window
Expand All @@ -32,7 +32,7 @@ public enum TargetFrame {
switch self {
case .blank:
return "_blank"
case .self:
case .`default`:
return "_self"
case .parent:
return "_parent"
Expand Down

0 comments on commit e07678a

Please sign in to comment.