diff --git a/sensors/miscdevice/vibrator/BUILD.gn b/sensors/miscdevice/vibrator/BUILD.gn
index ef533e2467d734ea9a7f3dcefc85193df1117c6d..d843b2d080399168c78c88735938a42ce24bc662 100644
--- a/sensors/miscdevice/vibrator/BUILD.gn
+++ b/sensors/miscdevice/vibrator/BUILD.gn
@@ -14,7 +14,7 @@
import("//build/ohos.gni")
ohos_ndk_headers("ndk_vibrator_header") {
- dest_dir = "$ndk_headers_out_dir/sensors/miscdevice/vibrator"
+ dest_dir = "$ndk_headers_out_dir/sensors"
sources = [
"./include/vibrator.h",
"./include/vibrator_type.h",
diff --git a/sensors/sensor/oh_sensor_type.h b/sensors/sensor/oh_sensor_type.h
index 16f05c98c9d6d707915e8564bc2a7847b6d3743e..f8ca2c4db3c6d480af4fca51363c064f4177e691 100644
--- a/sensors/sensor/oh_sensor_type.h
+++ b/sensors/sensor/oh_sensor_type.h
@@ -277,35 +277,35 @@ typedef struct Sensor_Event Sensor_Event;
/**
* @brief Obtains the sensor type.
*
- * @param Sensor_Event - Pointer to the sensor data information.
+ * @param sensorEvent - Pointer to the sensor data information.
* @param sensorType - Pointer to the sensor type.
* @return Returns SENSOR_SUCCESS if the operation is successful;
* returns an error code defined in {@link Sensor_Result} otherwise.
* @since 11
*/
-int32_t OH_SensorEvent_GetType(Sensor_Event* Sensor_Event, Sensor_Type *sensorType);
+int32_t OH_SensorEvent_GetType(Sensor_Event* sensorEvent, Sensor_Type *sensorType);
/**
* @brief Obtains the timestamp of sensor data.
*
- * @param Sensor_Event - Pointer to the sensor data information.
+ * @param sensorEvent - Pointer to the sensor data information.
* @param timestamp - Pointer to the timestamp.
* @return Returns SENSOR_SUCCESS if the operation is successful;
* returns an error code defined in {@link Sensor_Result} otherwise.
* @since 11
*/
-int32_t OH_SensorEvent_GetTimestamp(Sensor_Event* Sensor_Event, int64_t *timestamp);
+int32_t OH_SensorEvent_GetTimestamp(Sensor_Event* sensorEvent, int64_t *timestamp);
/**
* @brief Obtains the accuracy of sensor data.
*
- * @param Sensor_Event - Pointer to the sensor data information.
+ * @param sensorEvent - Pointer to the sensor data information.
* @param accuracy - Pointer to the accuracy.
* @return Returns SENSOR_SUCCESS if the operation is successful;
* returns an error code defined in {@link Sensor_Result} otherwise.
* @since 11
*/
-int32_t OH_SensorEvent_GetAccuracy(Sensor_Event* Sensor_Event, Sensor_Accuracy *accuracy);
+int32_t OH_SensorEvent_GetAccuracy(Sensor_Event* sensorEvent, Sensor_Accuracy *accuracy);
/**
* @brief Obtains sensor data. The data length and content depend on the sensor type.
@@ -333,14 +333,14 @@ int32_t OH_SensorEvent_GetAccuracy(Sensor_Event* Sensor_Event, Sensor_Accuracy *
* SENSOR_TYPE_PEDOMETER: data[0], indicating the number of steps a user has walked.
* SENSOR_TYPE_HEART_RATE: data[0], indicating the heart rate value.
*
- * @param Sensor_Event - Pointer to the sensor data information.
+ * @param sensorEvent - Pointer to the sensor data information.
* @param data - Double pointer to the sensor data.
* @param length - Pointer to the array length.
* @return Returns SENSOR_SUCCESS if the operation is successful;
* returns an error code defined in {@link Sensor_Result} otherwise.
* @since 11
*/
-int32_t OH_SensorEvent_GetData(Sensor_Event* Sensor_Event, float **data, uint32_t *length);
+int32_t OH_SensorEvent_GetData(Sensor_Event* sensorEvent, float **data, uint32_t *length);
/**
* @brief Defines the sensor subscription ID, which uniquely identifies a sensor.
@@ -371,7 +371,7 @@ int32_t OH_Sensor_DestroySubscriptionId(Sensor_SubscriptionId *id);
* @brief Obtains the sensor type.
*
* @param id - Pointer to the sensor subscription ID.
- * @param id - Pointer to the sensor type.
+ * @param sensorType - Pointer to the sensor type.
* @return Returns SENSOR_SUCCESS if the operation is successful;
* returns an error code defined in {@link Sensor_Result} otherwise.
* @since 11