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/raytrace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libdimension/raytrace.c') 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