From c4fdc216f9d9f79a1a7096a077208f5f5b2dcefa Mon Sep 17 00:00:00 2001 From: mkwtys Date: Tue, 17 Dec 2019 14:54:56 +0900 Subject: [PATCH] fix url --- docs/project/dynamic-import-expressions.md | 2 +- docs/styleguide/styleguide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/project/dynamic-import-expressions.md b/docs/project/dynamic-import-expressions.md index 4d1a006c5..fd726ff1d 100644 --- a/docs/project/dynamic-import-expressions.md +++ b/docs/project/dynamic-import-expressions.md @@ -67,4 +67,4 @@ import(/* webpackChunkName: "momentjs" */ "moment") 完全な例は[ここ][dynamicimportcode]で見ることができます。 -[dynamicimportcode]:https://cdn.rawgit.com/basarat/typescript-book/705e4496/code/dynamic-import-expressions/dynamicImportExpression.js +[dynamicimportcode]:https://cdn.rawgit.com/basarat/typescript-book/705e4496/code/dynamic-import-expressions/dynamicImportExpression.js diff --git a/docs/styleguide/styleguide.md b/docs/styleguide/styleguide.md index c8f8a4718..ef3b69438 100644 --- a/docs/styleguide/styleguide.md +++ b/docs/styleguide/styleguide.md @@ -231,7 +231,7 @@ const foo: string = "hello"; * エスケープしない限り、シングルクォート(`'`)を使用することをお勧めします。 -> 理由:他のJavaScriptチームがこれを行っています([airbnb](https://github.com/airbnb/javascript)、[標準](https://github.com/feross/standard)、[npm](https://github.com/npm/npm)、[NodeJS](https://github.com/nodejs/node)、[google/angular](https://github.com/angular/angular/)、[facebook/react](https://github.com/facebook/react))。入力が簡単です(ほとんどのキーボードでシフトが必要ありません)。[Prettierチームもシングルクォートを勧めています](https://github.com/prettier/prettier/issues/1105) +> 理由:他のJavaScriptチームがこれを行っています([airbnb](https://github.com/airbnb/javascript)、[標準](https://github.com/feross/standard)、[npm](https://github.com/npm/npm)、[NodeJS](https://github.com/nodejs/node)、[google/angular](https://github.com/angular/angular/)、[facebook/react](https://github.com/facebook/react))。入力が簡単です(ほとんどのキーボードでシフトが必要ありません)。[Prettierチームもシングルクォートを勧めています](https://github.com/prettier/prettier/issues/1105) > ダブルクォートはメリットがないわけではありません: オブジェクトをJSONに簡単にコピーできます。ユーザーが他の言語を使用して、引用文字を変更せずに作業できるようにします。たとえばアポストロフィを使用できます。例えば、`He's not going.`。しかし、私は、JSコミュニティが公正に決定したものから逸脱することはありません。