Skip to content

Commit ccdec0b

Browse files
committed
...
1 parent cacc3b4 commit ccdec0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/annotations/override.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ is an annotation.
66
There's not much else to say besides "hey, thats what that was!" but I think its
77
worth noting.
88

9-
```java
9+
```java,no_run
1010
interface Num {
1111
boolean odd();
1212

src/annotations/target.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The first of these "meta-annotations" you are likely to use is `@Target`.
77
By default an annotation can mark anything, but you can use `@Target` to
88
restrict what can be marked.[^typeuse]
99

10-
```java
10+
```java,no_run
1111
import java.lang.annotation.ElementType;
1212
import java.lang.annotation.Target;
1313

0 commit comments

Comments
 (0)