From 9d75a858726420601c0d0086a6e1fbac38b0f8b9 Mon Sep 17 00:00:00 2001 From: duy Date: Wed, 30 Oct 2024 18:29:10 +0700 Subject: [PATCH] Fix typo --- symja_android_library/doc/functions/AnglePath.md | 4 ++-- .../src/main/resources/doc/functions/AnglePath.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/symja_android_library/doc/functions/AnglePath.md b/symja_android_library/doc/functions/AnglePath.md index 5992e726b..8567926e0 100644 --- a/symja_android_library/doc/functions/AnglePath.md +++ b/symja_android_library/doc/functions/AnglePath.md @@ -7,13 +7,13 @@ AnglePath({phi1, phi2, ...}) > returns the points formed by a turtle starting at `{0, 0}` and angled at `0` degrees going through the turns given by angles`phi1, phi2, ...` and using distance `1` for each step. ``` -AnglePath({{r1, phi1}, {r2, phi2}, ...})' +AnglePath({{r1, phi1}, {r2, phi2}, ...}) ``` > instead of using `1` as distance, use `$r1$, $r2$, ...` as distances for the respective steps. ``` -AnglePath({{x, y}, phi0}, {phi1, phi2, ...})' +AnglePath({{x, y}, phi0}, {phi1, phi2, ...}) ``` > specifies initial position `{x, y}` and initial direction `phi0`. diff --git a/symja_android_library/matheclipse-core/src/main/resources/doc/functions/AnglePath.md b/symja_android_library/matheclipse-core/src/main/resources/doc/functions/AnglePath.md index 5992e726b..8567926e0 100644 --- a/symja_android_library/matheclipse-core/src/main/resources/doc/functions/AnglePath.md +++ b/symja_android_library/matheclipse-core/src/main/resources/doc/functions/AnglePath.md @@ -7,13 +7,13 @@ AnglePath({phi1, phi2, ...}) > returns the points formed by a turtle starting at `{0, 0}` and angled at `0` degrees going through the turns given by angles`phi1, phi2, ...` and using distance `1` for each step. ``` -AnglePath({{r1, phi1}, {r2, phi2}, ...})' +AnglePath({{r1, phi1}, {r2, phi2}, ...}) ``` > instead of using `1` as distance, use `$r1$, $r2$, ...` as distances for the respective steps. ``` -AnglePath({{x, y}, phi0}, {phi1, phi2, ...})' +AnglePath({{x, y}, phi0}, {phi1, phi2, ...}) ``` > specifies initial position `{x, y}` and initial direction `phi0`.