Skip to content

Commit e8d2782

Browse files
Normalize markdown to improve dashboard metadata extraction
Remove unnecessary HTML tags that interfere with dashboard metadata extraction. There is no change to content or appearance of paragraphs. Code voice in one paragraph now appears correctly as was seemingly intended.
1 parent e27d7d3 commit e8d2782

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proposals/0119-extensions-access-modifiers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
## Introduction
1010

11-
<p align="justify">One great goal for Swift 3 is to sort out any source breaking language changes. This proposal aims to fix access modifier inconsistency on extensions compared to other scope declarations types.</p>
11+
One great goal for Swift 3 is to sort out any source breaking language changes. This proposal aims to fix access modifier inconsistency on extensions compared to other scope declarations types.
1212

1313
Swift-evolution thread: [\[Proposal\] Revising access modifiers on extensions](https://forums.swift.org/t/proposal-revising-access-modifiers-on-extensions/3138)
1414

1515
## Motivation
1616

17-
<p align="justify">The access control of classes, enums and structs in Swift is very easy to learn and memorize. It also disallows to suppress the access modifier of implemented conformance members to lower access modifier if the host type has an access modifier of higher or equal level.</p>
17+
The access control of classes, enums and structs in Swift is very easy to learn and memorize. It also disallows to suppress the access modifier of implemented conformance members to lower access modifier if the host type has an access modifier of higher or equal level.
1818

19-
<center>`public` > `internal` > `fileprivate` >= `private`</center>
19+
`public` > `internal` > `fileprivate` >= `private`
2020

2121
```swift
2222
public class A {

0 commit comments

Comments
 (0)