Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in projects/src/project_08/21_nested_call.ts(initliazes -> initializes) #559

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion projects/src/project_08/21_nested_call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Sys.init 0
goto LOOP

// Sets locals 1, 2 and 3 to some values. Leaves locals 0 and 4 unchanged,
// to test that the 'function' VM command initliazes them to 0 (the test
// to test that the 'function' VM command initializes them to 0 (the test
// script sets them to -1 before this code starts running).
// Calls Sys.add12(123) and stores the return value (should be 135) in temp 0.
// Returns local 0 + local 1 + local 2 + local 3 + local 4 (should be 456), to
Expand Down