Skip to content

Commit 7a8ccb7

Browse files
authored
Merge pull request #92 from munierujp/patch-6
Add language to code block
2 parents f6d345d + b57384c commit 7a8ccb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/styleguide/styleguide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,12 +266,12 @@ const foo: string = "hello";
266266

267267
* ユニオン型や交差型が必要な場合には`type`を使います:
268268

269-
```
269+
```ts
270270
type Foo = number | { someProperty: number }
271271
```
272272
* `extend``implements`をしたいときは`interface`を使います。
273273
274-
```
274+
```ts
275275
interface Foo {
276276
foo: string;
277277
}

0 commit comments

Comments
 (0)