From 0f5275218c5c8d2d5a8bd03096e2407018a6351d Mon Sep 17 00:00:00 2001 From: Phodal Huang Date: Tue, 4 Jun 2024 20:48:44 +0800 Subject: [PATCH] refactor(docs): update package names in quick-start.md Update package names in quick-start.md for consistency. - Change package name from cc.unitmesh.untitled.demo to com.phodal.shire.demo - Refactor method name from calculateInsurance to calculateInsuranceTax --- docs/quick-start.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index 224de5a3..d077e999 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -79,22 +79,22 @@ PS: current only support for TestFile, since UnitTest is the best way to run cod Get child elements by symbol, like get Class by package name. ```shire -/symbol:cc.unitmesh.untitled.demo +/symbol:com.phodal.shire.demo ``` The output will be: ```java - cc.unitmesh.untitled.demo.MathHelper - cc.unitmesh.untitled.demo.DemoApplication - cc.unitmesh.untitled.demo.MathHelperTest - cc.unitmesh.untitled.demo.DemoApplicationTests + com.phodal.shire.demo.MathHelper + com.phodal.shire.demo.DemoApplication + com.phodal.shire.demo.MathHelperTest + com.phodal.shire.demo.DemoApplicationTests ``` Get method will return code: ```shire -/symbol:cc.unitmesh.untitled.demo.MathHelper.calculateInsurance +/symbol:com.phodal.shire.demo.MathHelper.calculateInsurance ``` The output will be: @@ -124,7 +124,7 @@ It will be text inside the body from web page. Refactor code: ```shire -/refactor:rename /symbol:cc.unitmesh.untitled.demo.MathHelper.calculateInsurance to calculateInsuranceTax +/refactor:rename /symbol:com.phodal.shire.demo.MathHelper.calculateInsurance to calculateInsuranceTax ``` It will be handled in local.