You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2017/04/13 21:13:52 UTC

incubator-juneau git commit: Fix javadoc.

Repository: incubator-juneau
Updated Branches:
  refs/heads/master ea286a9a0 -> 2dfa602d5


Fix javadoc.

Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/2dfa602d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/2dfa602d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/2dfa602d

Branch: refs/heads/master
Commit: 2dfa602d5d77df4b6c707152b6f85ffdedd831b4
Parents: ea286a9
Author: JamesBognar <ja...@apache.org>
Authored: Thu Apr 13 17:13:48 2017 -0400
Committer: JamesBognar <ja...@apache.org>
Committed: Thu Apr 13 17:13:48 2017 -0400

----------------------------------------------------------------------
 juneau-core/src/main/javadoc/overview.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/2dfa602d/juneau-core/src/main/javadoc/overview.html
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/javadoc/overview.html b/juneau-core/src/main/javadoc/overview.html
index 6f8bc74..8d2da27 100644
--- a/juneau-core/src/main/javadoc/overview.html
+++ b/juneau-core/src/main/javadoc/overview.html
@@ -2409,7 +2409,7 @@
 	<jk>public interface</jk> MyProxyInterface {
 		
 		<ja>@RemoteMethod</ja>(httpMethod=<js>"POST"</js>, path=<js>"/method"</js>)
-		String doMethod(<ja>@Header</ja>(<js>"E-Tag"</js>) UUID etag, <ja>@Query</ja>("debug") <jk>boolean</jk> debug, <ja>@Body</ja> MyPojo pojo);
+		String doMethod(<ja>@Header</ja>(<js>"E-Tag"</js>) UUID etag, <ja>@Query</ja>(<js>"debug"</js>) <jk>boolean</jk> debug, <ja>@Body</ja> MyPojo pojo);
 	}
 	
 	RestClient client = <jk>new</jk> RestClientBuilder().build();