spelling fixes

This commit is contained in:
Bill Currie 2004-04-08 18:53:46 +00:00
parent 4c4f40f137
commit 0e47ee96f8
2 changed files with 3 additions and 2 deletions

View file

@ -79,6 +79,7 @@ extern type_t type_param;
extern type_t type_zero;
extern struct struct_s *vector_struct;
extern struct struct_s *quaternion_struct;
struct dstring_s;

View file

@ -99,7 +99,7 @@ type_t type_param;
type_t type_zero;
struct_t *vector_struct;
struct_t *quaterion_struct;
struct_t *quaternion_struct;
type_t type_floatfield = { ev_field, ".float", NULL, &type_float };
@ -667,7 +667,7 @@ init_types (void)
new_struct_field (strct, &type_float, "y", vis_public);
new_struct_field (strct, &type_float, "z", vis_public);
strct = quaterion_struct = get_struct (0, 1);
strct = quaternion_struct = get_struct (0, 1);
init_struct (strct, new_type (), str_struct, 0);
new_struct_field (strct, &type_float, "s", vis_public);
new_struct_field (strct, &type_float, "x", vis_public);