Skip to content

Commit

Permalink
修复英文拼接不符合规范问题
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-awesome committed Mar 24, 2020
1 parent d77755e commit 00f8c78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,11 +416,11 @@ socket.disconnect();

```java
// 设置带宽限速为2G
lyrebird.setSpeedLimit(Bandwidth.BAND_WIDTH_2G);
lyrebird.setSpeedLimit(Bandwidth.BANDWIDTH_2G);
// 设置带宽限速为2.5G
lyrebird.setSpeedLimit(Bandwidth.BAND_WIDTH_2_5G);
lyrebird.setSpeedLimit(Bandwidth.BANDWIDTH_2_5G);
// 设置带宽限速为3G
lyrebird.setSpeedLimit(Bandwidth.BAND_WIDTH_3G);
lyrebird.setSpeedLimit(Bandwidth.BANDWIDTH_3G);
// 设置带宽不限速
lyrebird.setSpeedLimit(Bandwidth.UNLIMITED);
// 获取带宽速度
Expand Down

0 comments on commit 00f8c78

Please sign in to comment.