From 980fe00a74a9ad013b945755415ace2e5429c3c2 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 27 Oct 2021 02:31:24 +0300 Subject: [RU] Remove notranslate (#2874) --- files/ru/web/api/canvasrenderingcontext2d/filltext/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'files/ru/web/api/canvasrenderingcontext2d/filltext/index.html') diff --git a/files/ru/web/api/canvasrenderingcontext2d/filltext/index.html b/files/ru/web/api/canvasrenderingcontext2d/filltext/index.html index 74b759b2b1..47d83f96e4 100644 --- a/files/ru/web/api/canvasrenderingcontext2d/filltext/index.html +++ b/files/ru/web/api/canvasrenderingcontext2d/filltext/index.html @@ -11,7 +11,7 @@ translation_of: Web/API/CanvasRenderingContext2D/fillText

Синтаксис

-
void ctx.fillText(text, x, y [, maxWidth]);
+
void ctx.fillText(text, x, y [, maxWidth]);
 

Параметры

@@ -38,12 +38,12 @@ translation_of: Web/API/CanvasRenderingContext2D/fillText

HTML

-
<canvas id="canvas"></canvas>
+
<canvas id="canvas"></canvas>
 

JavaScript

-
var canvas = document.getElementById("canvas");
+
var canvas = document.getElementById("canvas");
 var ctx = canvas.getContext("2d");
 
 ctx.font = "48px serif";
@@ -55,7 +55,7 @@ ctx.fillText("Hello world", 50, 100);