From 82903ecad321a0522b6438b4cb91d863ae70f7c9 Mon Sep 17 00:00:00 2001 From: Nozomu Ikuta Date: Mon, 21 Sep 2020 20:36:41 +0900 Subject: [PATCH 1/2] fix: remove original english sentence --- src/guide/typescript-support.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/guide/typescript-support.md b/src/guide/typescript-support.md index 497241c0..6c55283c 100644 --- a/src/guide/typescript-support.md +++ b/src/guide/typescript-support.md @@ -222,7 +222,6 @@ year.value = 2020 // OKです! ``` ::: tip ノート -If the type of the generic is unknown, it's recommended to cast `ref` to `Ref`. ジェネリックの型が不明の場合、`ref` を `Ref` にキャストすることを推奨します。 ::: From 56de52979f760fcbe5a514b75ea6e9018b18a1b2 Mon Sep 17 00:00:00 2001 From: Nozomu Ikuta Date: Mon, 21 Sep 2020 20:37:12 +0900 Subject: [PATCH 2/2] fix: convert tip note to english --- src/guide/typescript-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/typescript-support.md b/src/guide/typescript-support.md index 6c55283c..dc1afb46 100644 --- a/src/guide/typescript-support.md +++ b/src/guide/typescript-support.md @@ -221,7 +221,7 @@ const year = ref('2020') // year の型: Ref year.value = 2020 // OKです! ``` -::: tip ノート +::: tip Note ジェネリックの型が不明の場合、`ref` を `Ref` にキャストすることを推奨します。 :::