Skip to content

Commit

Permalink
✏️ 修复拼写错误
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaojun1998 committed Jun 26, 2020
1 parent e7790ac commit 08e39b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/im/zhaojun/zfile/cache/ZFileCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public Set<String> keySet(Integer driveId) {


/**
* 从缓存中删除指定存储器的某个路径的缓存
* 从缓存中删除指定驱动器的某个路径的缓存
*
* @param driveId
* 驱动器 ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public ResultBean list(@PathVariable(name = "driveId") Integer driveId,
* @param driveId
* 驱动器 ID
*
* @return 返回指定存储器的系统配置信息
* @return 返回指定驱动器的系统配置信息
*/
@GetMapping("/config/{driveId}")
public ResultBean getConfig(@PathVariable(name = "driveId") Integer driveId, String path) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface DriverConfigRepository extends JpaRepository<DriveConfig, Integ
* @param type
* 存储类型
*
* @return 指定存储类型的存储器
* @return 指定存储类型的驱动器
*/
List<DriveConfig> findByType(StorageTypeEnum type);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public void deleteById(Integer id) {
* @param type
* 存储类型
*
* @return 指定存储类型的存储器
* @return 指定存储类型的驱动器
*/
public List<DriveConfig> findByType(StorageTypeEnum type) {
return driverConfigRepository.findByType(type);
Expand Down

0 comments on commit 08e39b3

Please sign in to comment.