Skip to content

Commit 0152b15

Browse files
committed
Fix broken links
1 parent 557f237 commit 0152b15

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CONTRIBUTORS.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
---
22
layout: page
33
title: Swift Contributors
4-
permalink: /CONTRIBUTORS
4+
5+
# Weirdly, CONTRIBUTORS.md is getting rendered as CONTROBUTORS.html.
6+
# That permalink setting, though, is getting rendered in it's rel=canonical,
7+
# and we don't want it to be broken.
8+
permalink: /CONTRIBUTORS.html
59
---
610

711
{% include_relative CONTRIBUTORS.txt %}

_posts/2021-02-22-black-history-month.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There are many Black developers in the Swift community creating educational reso
1313

1414
## Pushing Swift in new directions
1515

16-
[Marc Aupont](https://twitter.com/digimarktech) is pushing the boundaries of the Swift ecosystem by using Swift in embedded systems. Learn about how Marc built a robot car using a Raspberry Pi running Swift in his talk from try! Swift NYC 2019: [Swift Without Screens - Powering Connected Devices](https://www.youtube.com/watch?v=VILUaec-sCs). Marc goes into greater detail on writing Swift code for Raspberry Pi in the iPhreaks podcast episode: [iPS 296: Swift on Raspberry PI](https://devchat.tv/iphreaks/ips-296-swift-on-raspberry-pi-with-marc-aupont/).
16+
[Marc Aupont](https://twitter.com/digimarktech) is pushing the boundaries of the Swift ecosystem by using Swift in embedded systems. Learn about how Marc built a robot car using a Raspberry Pi running Swift in his talk from try! Swift NYC 2019: [Swift Without Screens - Powering Connected Devices](https://www.youtube.com/watch?v=VILUaec-sCs). Marc goes into greater detail on writing Swift code for Raspberry Pi in the iPhreaks podcast episode: [iPS 296: Swift on Raspberry PI](https://podcasts.apple.com/pl/podcast/ips-296-swift-on-raspberry-pi-with-marc-aupont/id634022060?i=1000480314894).
1717

1818
[Ish ShaBazz](https://twitter.com/ishabazz) is presenting the Swift community with a different perspective by emphasizing the human side of programming. In his powerful talk from SwiftFest Boston 2019, [Programming with a Purpose](https://www.youtube.com/watch?v=M-7DQJbMapI&feature=youtu.be), Ish tells his inspirational story of how he discovered his purpose, and the valuable lessons he learned along the way, including conquering imposter syndrome with curiosity, and overcoming fear in programming, public speaking, and life.
1919

@@ -25,4 +25,4 @@ To help young readers discover books written by and featuring people of color, [
2525

2626
## Join in on the celebration!
2727

28-
We are grateful for the perspectives, resources, and innovation that the Black community has brought to Swift. Please join in on the Black History Month celebration over on the [Community Showcase forum](https://forums.swift.org/c/community-showcase/) and share how the Black community has made a positive impact on your journey with Swift. If you are a member of the Black Swift community, we highly encourage you to [join Black in Swift](/diversity/#community-groups) to connect with others in the community!
28+
We are grateful for the perspectives, resources, and innovation that the Black community has brought to Swift. Please join in on the Black History Month celebration over on the [Community Showcase forum](https://forums.swift.org/c/community-showcase/) and share how the Black community has made a positive impact on your journey with Swift. If you are a member of the Black Swift community, we highly encourage you to [join Black in Swift](/diversity/#community-groups) to connect with others in the community!

migration-guide-swift3/se-0107-migrate.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ extension String {
345345
The above techniques all copy the string representation. If the goal
346346
is interoperability between the two types of C strings without copying
347347
the String, then it is necessary to bind memory to the correct type
348-
each time the String is accessed, as described in [UnsafeRawPointer.bindMemory(to:capacity:)](unsafeRawPointer.bindMemory(to:capacity:)).
348+
each time the String is accessed, as described in [UnsafeRawPointer.bindMemory(to:capacity:)](#unsaferawpointerbindmemorytocapacity).
349349

350350
### Untyped Buffers ("raw" vs. UInt8)
351351

0 commit comments

Comments
 (0)