From e797661997e2c9fbdc4e173ae88d60afab5722e6 Mon Sep 17 00:00:00 2001 From: andrhua Date: Thu, 22 Nov 2018 17:00:26 +0300 Subject: [PATCH] fixed machine translation (#23721) --- guide/russian/typescript/boolean-type/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guide/russian/typescript/boolean-type/index.md b/guide/russian/typescript/boolean-type/index.md index ccf8f1f8ce..56484c3bf0 100644 --- a/guide/russian/typescript/boolean-type/index.md +++ b/guide/russian/typescript/boolean-type/index.md @@ -1,12 +1,12 @@ --- title: Boolean Type -localeTitle: Булевский тип +localeTitle: Тип Boolean --- -# Булевский тип +# Тип boolean -`boolean` - это ваше основное значение true / false JavaScript. +`boolean` - это просто значение true / false в JavaScript. ```typescript let isDone: boolean = false; -``` \ No newline at end of file +```