diff options
author | acolyer <acolyer> | 2005-08-17 16:34:24 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-17 16:34:24 +0000 |
commit | 154fd6e59d48eaaebe834a49e859b91b320dd430 (patch) | |
tree | 13cf13e7e551cf6a02a5e8e0198777e7ba8df610 /docs | |
parent | e8f7b99508f0e44f756c465d710d7536f34c3710 (diff) | |
download | aspectj-154fd6e59d48eaaebe834a49e859b91b320dd430.tar.gz aspectj-154fd6e59d48eaaebe834a49e859b91b320dd430.zip |
replaced <i> which docbook does not understand with <emphasis> which it does
Diffstat (limited to 'docs')
-rw-r--r-- | docs/adk15ProgGuideDB/miscellaneous.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/adk15ProgGuideDB/miscellaneous.xml b/docs/adk15ProgGuideDB/miscellaneous.xml index 899ac1208..24a677cf7 100644 --- a/docs/adk15ProgGuideDB/miscellaneous.xml +++ b/docs/adk15ProgGuideDB/miscellaneous.xml @@ -49,7 +49,7 @@ <programlisting><![CDATA[ declare soft : SomeRuntimeException : execution(* *(..)); - >> "SomeRuntimeException will not be softened as it is already a RuntimeException" [XLint:runtimeExceptionNotSoftened] + >> "SomeRuntimeException will not be softened as it is already a RuntimeException" [XLint:runtimeExceptionNotSoftened] ]]></programlisting> <para> @@ -58,7 +58,7 @@ <para> If the exception type specified in a declare soft statement is a super type of <literal>RuntimeException</literal> - (such as <literal>Exception</literal> for example) then any <i>checked</i> exception thrown at a matched join point, + (such as <literal>Exception</literal> for example) then any <emphasis>checked</emphasis> exception thrown at a matched join point, where the exception is an instance of the softened exception, will be softened to an <literal>org.aspectj.lang.SoftException</literal>. </para> |