aboutsummaryrefslogtreecommitdiff
path: root/src/lombok/Lombok.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-10-16 10:16:03 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-10-16 10:16:03 +0200
commit2d3b98e847b9dc1878b657de97fce2f54104776d (patch)
treea66995df3efe3d1f4c5075ec098a1b7114aabb4d /src/lombok/Lombok.java
parentb5c8b725655d2ad8a715cfb1fbbdf25dbdcd4ceb (diff)
downloadlombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.gz
lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.tar.bz2
lombok-2d3b98e847b9dc1878b657de97fce2f54104776d.zip
Switched all use of <code></code> in javadoc to {@code}.
Diffstat (limited to 'src/lombok/Lombok.java')
-rw-r--r--src/lombok/Lombok.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lombok/Lombok.java b/src/lombok/Lombok.java
index f2f196ed..71684f4f 100644
--- a/src/lombok/Lombok.java
+++ b/src/lombok/Lombok.java
@@ -39,9 +39,9 @@ public class Lombok {
* about the concept of a 'checked exception'. All this method does is hide the act of throwing a checked exception
* from the java compiler.
* <p>
- * Note that this method has a return type of <code>RuntimeException</code> it is advised you always call this
- * method as argument to the <code>throw</code> statement to avoid compiler errors regarding no return
- * statement and similar problems. This method won't of course return an actual <code>RuntimeException</code> -
+ * Note that this method has a return type of {@code RuntimeException} it is advised you always call this
+ * method as argument to the {@code throw} statement to avoid compiler errors regarding no return
+ * statement and similar problems. This method won't of course return an actual {@code RuntimeException} -
* it never returns, it always throws the provided exception.
*
* @param t The throwable to throw without requiring you to catch its type.