Skip to content

Commit d24e001

Browse files
committed
update README
1 parent 2c4dc6c commit d24e001

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22

33
Dubbo is a distributed, high performance RPC framework which empowers applications with service import/export capabilities.
44

5-
It's composed of three key parts:
5+
It contains three key parts, which include:
66

7-
* Remoting: a network communication framework providing sync-over-async and request-response messaging.
8-
* Clustering: a remote procedure call abstraction with load-balancing/failover/clustering capabilities.
9-
* Registry: a service directory framework for service registration and service event publish/subscription
7+
* **Remoting**: a network communication framework providing sync-over-async and request-response messaging.
8+
* **Clustering**: a remote procedure call abstraction with load-balancing/failover/clustering capabilities.
9+
* **Registration**: a service directory framework for service registration and service event publish/subscription
1010

11-
For more details, please refer to wiki or [dubbo.io](http://dubbo.io).
11+
For more details, please refer to [wiki](https://github.com/alibaba/dubbo/wiki) or [dubbo.io](http://dubbo.io).
1212

1313
## Quick Start
1414

1515

16-
Export remote service:
16+
Export service:
1717

1818
```xml
1919
<bean id="barService" class="com.foo.BarServiceImpl" />
2020
<dubbo:service interface="com.foo.BarService" ref="barService" />
2121
```
2222

23-
Refer remote service:
23+
Refer to service:
2424

2525
```xml
2626
<dubbo:reference id="barService" interface="com.foo.BarService" />

0 commit comments

Comments
 (0)