Skip to content

Commit abaa32c

Browse files
authored
Fix wrong url redirection for data races (#15)
1 parent 0dbeebc commit abaa32c

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

src/ar/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ try await withThrowingTaskGroup(of: Void.self) { group in
186186

187187
### المشكلة: سباقات البيانات
188188

189-
[سباق البيانات](https://developer.apple.com/documentation/xcode/data-race) يحدث عندما يصل خيطان لنفس الذاكرة في نفس الوقت، وواحد منهم على الأقل يكتب:
189+
[سباق البيانات](https://developer.apple.com/documentation/xcode/data-races) يحدث عندما يصل خيطان لنفس الذاكرة في نفس الوقت، وواحد منهم على الأقل يكتب:
190190

191191
```swift
192192
var count = 0

src/en/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ All of these worked, but safety was entirely on you. The compiler couldn't help
184184

185185
### The Problem: Data Races
186186

187-
A [data race](https://developer.apple.com/documentation/xcode/data-race) happens when two threads access the same memory at the same time, and at least one is writing:
187+
A [data race](https://developer.apple.com/documentation/xcode/data-races) happens when two threads access the same memory at the same time, and at least one is writing:
188188

189189
```swift
190190
var count = 0

src/es/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Todos estos funcionaban, pero la seguridad era enteramente tu responsabilidad. E
186186

187187
### El Problema: Data Races
188188

189-
Un [data race](https://developer.apple.com/documentation/xcode/data-race) ocurre cuando dos hilos acceden a la misma memoria al mismo tiempo, y al menos uno está escribiendo:
189+
Un [data race](https://developer.apple.com/documentation/xcode/data-races) ocurre cuando dos hilos acceden a la misma memoria al mismo tiempo, y al menos uno está escribiendo:
190190

191191
```swift
192192
var count = 0

src/ja/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Swift の並行処理システム以前は、実行を管理するいくつか
186186

187187
### 問題: データレース
188188

189-
[データレース](https://developer.apple.com/documentation/xcode/data-race)は、二つのスレッドが同じメモリに同時にアクセスし、少なくとも一方が書き込んでいるときに起こる:
189+
[データレース](https://developer.apple.com/documentation/xcode/data-races)は、二つのスレッドが同じメモリに同時にアクセスし、少なくとも一方が書き込んでいるときに起こる:
190190

191191
```swift
192192
var count = 0

src/ko/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Swift의 동시성 시스템 전에는 실행을 관리하는 여러 방법이
186186

187187
### 문제: 데이터 레이스
188188

189-
[데이터 레이스](https://developer.apple.com/documentation/xcode/data-race)는 두 스레드가 동시에 같은 메모리에 접근하고, 적어도 하나가 쓰고 있을 때 발생합니다:
189+
[데이터 레이스](https://developer.apple.com/documentation/xcode/data-races)는 두 스레드가 동시에 같은 메모리에 접근하고, 적어도 하나가 쓰고 있을 때 발생합니다:
190190

191191
```swift
192192
var count = 0

src/pt-BR/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Todos funcionavam, mas segurança era totalmente sua responsabilidade. O compila
186186

187187
### O Problema: Data Races
188188

189-
Um [data race](https://developer.apple.com/documentation/xcode/data-race) acontece quando duas threads acessam a mesma memória ao mesmo tempo, e pelo menos uma está escrevendo:
189+
Um [data race](https://developer.apple.com/documentation/xcode/data-races) acontece quando duas threads acessam a mesma memória ao mesmo tempo, e pelo menos uma está escrevendo:
190190

191191
```swift
192192
var count = 0

src/pt-PT/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Todos funcionavam, mas a segurança estava inteiramente nas tuas mãos. O compil
186186

187187
### O Problema: Data Races
188188

189-
Um [data race](https://developer.apple.com/documentation/xcode/data-race) acontece quando duas threads acedem à mesma memória ao mesmo tempo, e pelo menos uma está a escrever:
189+
Um [data race](https://developer.apple.com/documentation/xcode/data-races) acontece quando duas threads acedem à mesma memória ao mesmo tempo, e pelo menos uma está a escrever:
190190

191191
```swift
192192
var count = 0

src/ru/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ try await withThrowingTaskGroup(of: Void.self) { group in
186186

187187
### Проблема: гонки данных
188188

189-
[Гонка данных](https://developer.apple.com/documentation/xcode/data-race) случается, когда два потока одновременно обращаются к одной памяти, и хотя бы один пишет:
189+
[Гонка данных](https://developer.apple.com/documentation/xcode/data-races) случается, когда два потока одновременно обращаются к одной памяти, и хотя бы один пишет:
190190

191191
```swift
192192
var count = 0

src/zh-CN/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ try await withThrowingTaskGroup(of: Void.self) { group in
186186

187187
### 问题:数据竞争
188188

189-
[数据竞争](https://developer.apple.com/documentation/xcode/data-race)发生在两个线程同时访问同一块内存,且至少有一个在写:
189+
[数据竞争](https://developer.apple.com/documentation/xcode/data-races)发生在两个线程同时访问同一块内存,且至少有一个在写:
190190

191191
```swift
192192
var count = 0

src/zh-TW/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ try await withThrowingTaskGroup(of: Void.self) { group in
186186

187187
### 問題:資料競爭
188188

189-
當兩個執行緒同時存取相同的記憶體,而且至少有一個在寫入時,就會發生[資料競爭](https://developer.apple.com/documentation/xcode/data-race)
189+
當兩個執行緒同時存取相同的記憶體,而且至少有一個在寫入時,就會發生[資料競爭](https://developer.apple.com/documentation/xcode/data-races)
190190

191191
```swift
192192
var count = 0

0 commit comments

Comments
 (0)