Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/manual/language-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ Expressions are evaluated using numeric values. All comparison operators return
The [IF](if.md) command evaluates a boolean expression to direct program flow. Block forms must be properly terminated with [ENDIF](endif.md); because conditional jump mappings are built during parsing, unclosed blocks will cause structural runtime errors.

```basic
// Single-line syntax[cite: 2]
// Single-line syntax
10 IF A > 0 THEN PRINT "POSITIVE"

// Multi-line block syntax[cite: 2]
// Multi-line block syntax
10 IF A > 0 THEN
20 PRINT("POSITIVE")
30 ELSE
Expand Down
3 changes: 2 additions & 1 deletion docs/manual/pwm.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# POW
# PWM

**Category:** Function
**Syntax:** `PWM(pin, level)`
Expand All @@ -11,6 +11,7 @@ The PWM function generates a Pulse Width Modulation signal on a specified pin. T

- [ANALOG](analog.md)
- [PIN](pin.md)
- [SET](set.md)

## Example

Expand Down
Loading