missing parens

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/proxy/trunk@1585317 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java b/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java
index 11b70a0..c39b0ce 100644
--- a/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java
+++ b/core/src/main/java/org/apache/commons/proxy2/serialization/package-info.java
@@ -18,7 +18,7 @@
  * The various {@link org.apache.commons.proxy2.ProxyFactory} implementations create {@link Serializable} proxies;
  * however it is not always possible or practical to serialize the complete structure of a given proxy object. The
  * intent of this package is to facilitate the "serialization proxy" pattern by means of the {@code readResolve()} and
- * {@code writeReplace} methods supported by Java's serialization mechanism. This would normally be problematic with
+ * {@code writeReplace()} methods supported by Java's serialization mechanism. This would normally be problematic with
  * Commons Proxy because its proxies are generalized to expose only methods declared by superclasses (where applicable)
  * or proxied interfaces. Therefore we declare the following interfaces:
  * <ul>