From: Justin Seyster Date: Tue, 23 Nov 2010 21:22:14 +0000 (-0500) Subject: Fixed typos in documentation main page. X-Git-Tag: release-v1.1~17 X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=aa84bdfbed2ea29aa3e25960b351620e6e131106;p=interaspect.git Fixed typos in documentation main page. --- diff --git a/src/aop-doxy-main.c b/src/aop-doxy-main.c index b29ea0a..3fb1070 100644 --- a/src/aop-doxy-main.c +++ b/src/aop-doxy-main.c @@ -31,7 +31,7 @@ * InterAspect provides a simple framework for writing GCC plug-ins * that provide instrumentation. Instrumentation consists of * advice function calls that can be inserted at various - * program point. For example, it is possible to insert an advice + * program points. For example, it is possible to insert an advice * call at every call to malloc, passing the allocated * size and the address of the allocated region to the advice * function. @@ -45,7 +45,7 @@ * * \section pc Pointcuts * An InterAspect-based plug-in finds program points in the target - * program by construction a pointcut, which is a set of points + * program by constructing a pointcut, which is a set of points * in the program available for instrumentation. These program points * are called join points. * @@ -58,7 +58,7 @@ * - \ref call_pc "Function call" pointcuts. * - \ref assign_pc "Assignment" pointcuts. * - * After construction a pointcut, it is possible to refine the set + * After constructing a pointcut, it is possible to refine the set * using filter functions, which have the prefix * aop_filter_. For example, it is possible to define a * pointcut that only matches calls to malloc using @@ -92,7 +92,7 @@ * See the \ref hello.c "Hello World" sample plug-in for a simple * example of setting up a pass. * - * \section advicetype Advice Function Type Safety + * \section advicetype Advice function type safety * * When inserting a call to an advice function, InterAspect cannot * directly check that the arguments passed to the advice match the