Skip to content

Commit e5d73d9

Browse files
authored
Format filenames consistently (#2415)
The style used in the rest of the course is _italic_ filenames, so we should be careful to not suddenly use **bold** names. The style is of course up for debate, but we need to ensure consistency first.
1 parent ab78a9e commit e5d73d9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/android/aidl/types/file-descriptor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
Files can be sent between Binder clients/servers using the
44
`ParcelFileDescriptor` type:
55

6-
**birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl**:
6+
_birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl_:
77

88
```java
99
interface IBirthdayService {
1010
{{#include ../birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl:with_file}}
1111
}
1212
```
1313

14-
**birthday_service/src/client.rs**:
14+
_birthday_service/src/client.rs_:
1515

1616
```rust,ignore
1717
fn main() {
@@ -21,7 +21,7 @@ fn main() {
2121
}
2222
```
2323

24-
**birthday_service/src/lib.rs**:
24+
_birthday_service/src/lib.rs_:
2525

2626
```rust,ignore
2727
impl IBirthdayService for BirthdayService {

src/android/aidl/types/objects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
AIDL objects can be sent either as a concrete AIDL type or as the type-erased
44
`IBinder` interface:
55

6-
**birthday_service/aidl/com/example/birthdayservice/IBirthdayInfoProvider.aidl**:
6+
_birthday_service/aidl/com/example/birthdayservice/IBirthdayInfoProvider.aidl_:
77

88
```java
99
{{#include ../birthday_service/aidl/com/example/birthdayservice/IBirthdayInfoProvider.aidl:IBirthdayInfoProvider}}
1010
```
1111

12-
**birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl**:
12+
_birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl_:
1313

1414
```java
1515
import com.example.birthdayservice.IBirthdayInfoProvider;
@@ -19,7 +19,7 @@ interface IBirthdayService {
1919
}
2020
```
2121

22-
**birthday_service/src/client.rs**:
22+
_birthday_service/src/client.rs_:
2323

2424
```rust,ignore
2525
{{#include ../birthday_service/src/client.rs:InfoProvider}}

src/android/aidl/types/parcelables.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
Binder for Rust supports sending parcelables directly:
44

5-
**birthday_service/aidl/com/example/birthdayservice/BirthdayInfo.aidl**:
5+
_birthday_service/aidl/com/example/birthdayservice/BirthdayInfo.aidl_:
66

77
```java
88
{{#include ../birthday_service/aidl/com/example/birthdayservice/BirthdayInfo.aidl}}
99
```
1010

11-
**birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl**:
11+
_birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl_:
1212

1313
```java
1414
import com.example.birthdayservice.BirthdayInfo;
@@ -18,7 +18,7 @@ interface IBirthdayService {
1818
}
1919
```
2020

21-
**birthday_service/src/client.rs**:
21+
_birthday_service/src/client.rs_:
2222

2323
```rust,ignore
2424
fn main() {

0 commit comments

Comments
 (0)