diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-04-11 17:29:02 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-04-11 17:29:02 -0400 |
commit | 167fe4ff63713d7267eb1f11651e969b0dc108f8 (patch) | |
tree | c632c420c2b30b01a70d51bc11c9a372d2539331 | |
parent | 629cad2c7578aea62761ba2e1810356138b57480 (diff) | |
download | dimension-167fe4ff63713d7267eb1f11651e969b0dc108f8.tar.xz |
Fix '?.' typos.
-rw-r--r-- | libdimension/dimension/color.h | 2 | ||||
-rw-r--r-- | libdimension/raytrace.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libdimension/dimension/color.h b/libdimension/dimension/color.h index 22a1cc5..363eb56 100644 --- a/libdimension/dimension/color.h +++ b/libdimension/dimension/color.h @@ -92,7 +92,7 @@ extern const dmnsn_color dmnsn_cyan; /**< Cyan. */ CIE XYZ */ extern const dmnsn_CIE_XYZ dmnsn_whitepoint; -/** Is this color black?. */ +/** Is this color black? */ bool dmnsn_color_is_black(dmnsn_color color); /* Color conversions */ diff --git a/libdimension/raytrace.c b/libdimension/raytrace.c index 23ccd4e..1379c29 100644 --- a/libdimension/raytrace.c +++ b/libdimension/raytrace.c @@ -172,10 +172,10 @@ dmnsn_raytrace_scene_concurrent(void *ptr, unsigned int thread, /** Get the default texture. */ #define DTEXTURE(state) (state->scene->default_texture) -/** Can a texture element be accessed?. */ +/** Can a texture element be accessed? */ #define CAN_ACCESS(texture, telem) \ ((texture) && (texture)->telem) -/** Can a texture element callback be called?. */ +/** Can a texture element callback be called? */ #define CAN_CALL(texture, telem, fn) \ (CAN_ACCESS(texture, telem) && (texture)->telem->fn) |