Skip to content

Commit 4f8e592

Browse files
committed
docs: fix fixed build
1 parent 26a2e75 commit 4f8e592

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

types/api/Server.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ declare class Server {
173173
* 获取由服务器控制的主计分板。
174174
* <p>
175175
* 此计分板由服务器保存,会受到“/scoreboard”命令的影响,并且是默认向玩家显示的计分板。只有在关卡加载完成后,此计分板才会存在。
176-
*
176+
* </p>
177177
* @return 默认的服务器计分板
178178
*/
179179
// getScoreboard(): any;
@@ -182,7 +182,7 @@ declare class Server {
182182
* 创建一个由服务器跟踪的新计分板。
183183
* <p>
184184
* 此计分板不会由服务器保存,也不受“/scoreboard”命令的影响。
185-
*
185+
* </p>
186186
* @return 新创建的计分板
187187
*/
188188
// createScoreboard(): any;

types/api/actor/Actor.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ declare class Actor extends CommandSender {
7878
* 设置角色的旋转。
7979
* <p>
8080
* 注意,如果该角色受到AI影响,则可能会覆盖这个旋转。
81-
*
81+
* </p>
8282
* @param yaw 围绕Y轴旋转的旋转(Y轴)
8383
* @param pitch 绕X轴旋转的旋转(X轴)
8484
*/

types/api/level/Location.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ declare class Location extends Position {
2525
/**
2626
* 设置这个位置的坡度,以度为单位测量。坡度是水平方向、负y方向、向上方向或正y方向之间的角度。
2727
* <ul>
28-
* <li>一个坡度为0表示面向水平方向。
29-
* <li>一个坡度为90表示向下方向(负Y方向)。
30-
* <li>一个坡度为-90表示向上方向(正Y方向)。
28+
* <li>一个坡度为0表示面向水平方向。</li>
29+
* <li>一个坡度为90表示向下方向(负Y方向)。</li>
30+
* <li>一个坡度为-90表示向上方向(正Y方向)。</li>
3131
* </ul>
3232
* 增加坡度值相当于向下看。
3333
*
@@ -45,10 +45,10 @@ declare class Location extends Position {
4545
/**
4646
* 设置这个位置的 yaw,以度为单位测量。yaw是顺时针方向或逆时针方向之间的角度。
4747
* <ul>
48-
* <li>一个 yaw为0或360表示正Z方向。
49-
* <li>一个 yaw为180表示负Z方向。
50-
* <li>一个 yaw为90表示负X方向。
51-
* <li>一个 yaw为270表示正X方向。
48+
* <li>一个 yaw为0或360表示正Z方向。</li>
49+
* <li>一个 yaw为180表示负Z方向。</li>
50+
* <li>一个 yaw为90表示负X方向。</li>
51+
* <li>一个 yaw为270表示正X方向。</li>
5252
* </ul>
5353
* 增加yaw值相当于向右-facing,增加下 respective轴的缩放,减少上 respective轴的缩放
5454
*

types/api/util/Vector.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/**
44
* 表示一个三维向量。
5-
* Vector<float>
5+
* 在底层表示为 Vector\<float\>
66
*/
77
declare class Vector {
88
constructor(x: number, y: number, z: number);

0 commit comments

Comments
 (0)