diff options
Diffstat (limited to 'files/ru/web/api/canvasrenderingcontext2d/lineto/index.html')
-rw-r--r-- | files/ru/web/api/canvasrenderingcontext2d/lineto/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/api/canvasrenderingcontext2d/lineto/index.html b/files/ru/web/api/canvasrenderingcontext2d/lineto/index.html index 5f1b527e35..db3b7db1ae 100644 --- a/files/ru/web/api/canvasrenderingcontext2d/lineto/index.html +++ b/files/ru/web/api/canvasrenderingcontext2d/lineto/index.html @@ -50,7 +50,7 @@ translation_of: Web/API/CanvasRenderingContext2D/lineTo const ctx = canvas.getContext('2d'); ctx.beginPath(); // Начинает новый путь -ctx.moveTo(30, 50); // Рередвигает перо в точку (30, 50) +ctx.moveTo(30, 50); // Передвигает перо в точку (30, 50) ctx.lineTo(150, 100); // Рисует линию до точки (150, 100) ctx.stroke(); // Отображает путь</pre> |