From 39660c5ae5e61450eac3a84bd2ce00f1b830ab70 Mon Sep 17 00:00:00 2001 From: HereComesTheBoomOne Date: Fri, 3 Apr 2026 01:30:05 +0300 Subject: [PATCH] docs(publish): fix typos in PUBLISH.md - Fix capitalization: 'Uses' -> 'uses' - Remove extra space in file path --- PUBLISH.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PUBLISH.md b/PUBLISH.md index 6939d8002a6..3e69742facd 100644 --- a/PUBLISH.md +++ b/PUBLISH.md @@ -4,7 +4,7 @@ Hippy version management follows principle that all modules use same version. ## 1. Update Version Number -The front-end Uses [lerna](https://lerna.js.org/) for versioning and CHANGELOG generation, but cannot use its publishing functionality because it needs to update the terminal package. +The front-end uses [lerna](https://lerna.js.org/) for versioning and CHANGELOG generation, but cannot use its publishing functionality because it needs to update the terminal package. Update version and CHANGELOG usage: @@ -155,7 +155,7 @@ git push origin tag # 提交 tag ```bash // annotation local reference in `setting.gradle` // include 'android-sdk' - // project(':android-sdk').projectDir = new File('../../ android/sdk') + // project(':android-sdk').projectDir = new File('../../android/sdk') --------------