Skip to content

Commit 44cdc71

Browse files
committed
Fixed a variety of linking issues in Section 11
1 parent 981b4e6 commit 44cdc71

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

10 - Inheritance/10.0 - Inheritance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ To prevent a method, property, or subscript from being overridden by a subclass,
4242

4343
You can also mark whole classes as `final`, to prevent them being subclassed. Any attempt to do so will result in a compile time error.
4444

45-
[Previous Section](../9%20-%20Methods/9.1%20-%20Instance%20Methods.md) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes) | [Next Note](../11%20-%20Initialization/11.0%20-%2020Initialization.md)
45+
[Previous Section](../9%20-%20Methods/9.1%20-%20Instance%20Methods.md) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes) | [Next Note](../11%20-%20Initialization/11.0%20-%20Initialization.md)

11 - Initialization/11.0 - Initialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Initialization is the process of preparing an instance of a class, structure or enumeration for use. This can involve setting initial values and any other setup work that needs to be done. Initialization can be performed by setting up *initializers*. In addition, one can also implement *deinitializers*, which can perform custom cleanup for a class is de-allocated. This is covered in the deinitialization section
44

5-
[Previous Section](../8%20-%20Properties/8.2%20-%20Property%20Observers.md) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes) | [Next Note](../11%20-%20Initialization/11.1%20-$20Setting$20Initial Values$20for$20Stored$20Properties)
5+
[Previous Section](../8%20-%20Properties/8.2%20-%20Property%20Observers.md) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes) | [Next Note](../11%20-%20Initialization/11.1%20-%20Setting%20Initial%20Values%20for%20Stored%20Properties.md)

11 - Initialization/11.2 - Customizing Initialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ You are also allowed to set constant properties to any value during the initiali
7878

7979
Note that in a class, you can only assign variable to constants introduced by it, not to any constants that it inherits from a superclass.
8080

81-
[Previous Note](../11%20-%20Initialization/11.1%20-$20Setting$20Initial Values$20for$20Stored$20Properties) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes) | [Next Note](../11%20-%20Initialization/11.3%20-%20Default%20Intializers.md)
81+
[Previous Note](../11%20-%20Initialization/11.1%20-%20Setting%20Initial%20Values%20for%20Stored%20Properties.md) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes) | [Next Note](../11%20-%20Initialization/11.3%20-%20Default%20Initializers.md)

11 - Initialization/11.3 - Default Initializers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 11.3 [Default Intializers](https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/Initialization.html#//apple_ref/doc/uid/TP40014097-CH18-ID213)
1+
# 11.3 [Default Initializers](https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/Initialization.html#//apple_ref/doc/uid/TP40014097-CH18-ID213)
22

33
## Classes
44

11 - Initialization/11.4 - Initializer Delegation for Value Types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ struct Rect {
3434
}
3535
```
3636

37-
[Previous Note](../11%20-%20Initialization/11.3%20-%20Default%20Intializers.md) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes)
37+
[Previous Note](../11%20-%20Initialization/11.3%20-%20Default%20Initializers.md) | [Back To Contents](https://github.com/Firanus/swift-language-guide-notes)

0 commit comments

Comments
 (0)