From 68c77c89be5d26bd5f2e6f562db968eb0eae58e9 Mon Sep 17 00:00:00 2001 From: Marvin Froeder Date: Mon, 31 Oct 2022 08:19:42 +0000 Subject: [PATCH] Fix case for Java (#1816) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9a350d990..e62043808 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Feign makes writing java http clients easier +# Feign makes writing Java http clients easier [![Join the chat at https://gitter.im/OpenFeign/feign](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/OpenFeign/feign?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![CircleCI](https://circleci.com/gh/OpenFeign/feign/tree/master.svg?style=svg)](https://circleci.com/gh/OpenFeign/feign/tree/master) @@ -9,7 +9,7 @@ Feign is a Java to HTTP client binder inspired by [Retrofit](https://github.com/ --- ### Why Feign and not X? -Feign uses tools like Jersey and CXF to write java clients for ReST or SOAP services. Furthermore, Feign allows you to write your own code on top of http libraries such as Apache HC. Feign connects your code to http APIs with minimal overhead and code via customizable decoders and error handling, which can be written to any text-based http API. +Feign uses tools like Jersey and CXF to write Java clients for ReST or SOAP services. Furthermore, Feign allows you to write your own code on top of http libraries such as Apache HC. Feign connects your code to http APIs with minimal overhead and code via customizable decoders and error handling, which can be written to any text-based http API. ### How does Feign work?