Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
barak committed May 4, 2016
1 parent eb2b1fd commit f558aa0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion c/gcwrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void S_gc_init() {
S_G.countof_size[countof_guardian] = 0;
for (i = 0; i < countof_types; i += 1) {
if (Svector_ref(S_G.countof_names, i) == FIX(0)) {
fprintf(stderr, "unitialized countof_name at index %d\n", i);
fprintf(stderr, "uninitialized countof_name at index %d\n", i);
S_abnormal_exit();
}
}
Expand Down
2 changes: 1 addition & 1 deletion c/scheme.c
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ static IBOOL find_boot(name, ext, errorp) const char *name, *ext; IBOOL errorp;
Sschemeheapdirs, Sdefaultheapdirs);
S_abnormal_exit();
} else {
if (verbose) fprintf(stderr, "no compatable %s%s found\n", name, ext);
if (verbose) fprintf(stderr, "no compatible %s%s found\n", name, ext);
return 0;
}
}
Expand Down
2 changes: 1 addition & 1 deletion scheme.1.in
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ At optimize-levels 0, 1, and 2, code generated by the compiler is
At optimize-level 3, code generated by the compiler is \fIunsafe\fP,
i.e., may omit these checks.
Unsafe code is usually faster, but optimize-level 3 should be used only
for well-tested code since the absense of type and bounds checks may
for well-tested code since the absence of type and bounds checks may
result in invalid memory references, corruption of the Scheme heap (which
may cause seemingly unrelated problems later), system crashes, or other
undesirable behaviors.
Expand Down

0 comments on commit f558aa0

Please sign in to comment.