From 167fe4ff63713d7267eb1f11651e969b0dc108f8 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 11 Apr 2011 17:29:02 -0400 Subject: Fix '?.' typos. --- libdimension/dimension/color.h | 2 +- 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) -- cgit v1.2.3