Skip to content

Commit

Permalink
[api] Avoid non-ascii characters (#3395)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfliu authored Aug 7, 2024
1 parent a70360e commit 90d8279
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tasks {
jar {
manifest {
attributes(
"Notice" to "DJL will collect telemetry to help us better understand our users" +
"Notice" to "DJL will collect telemetry to help us better understand our users'" +
" needs, diagnose issues, and deliver additional features. If you would" +
" like to learn more or opt-out please go to: " +
"https://docs.djl.ai/docs/telemetry.html for more information."
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/ai/djl/util/Ec2Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static void callHome(String engine) {
logger.debug("telemetry: {} {}", statusCode, conn.getResponseMessage());
} else {
logger.info(
"DJL will collect telemetry to help us better understand our users needs,"
"DJL will collect telemetry to help us better understand our users' needs,"
+ " diagnose issues, and deliver additional features. If you would like"
+ " to learn more or opt-out please go to:"
+ " https://docs.djl.ai/docs/telemetry.html for more information.");
Expand Down

0 comments on commit 90d8279

Please sign in to comment.