Skip to content

Commit 2210ca8

Browse files
committed
fix: ASCII single quote
1 parent 27b7e99 commit 2210ca8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/src/main/java/com/google/adk/events/Event.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public void setModelVersion(@Nullable String modelVersion) {
272272
}
273273

274274
/**
275-
* Input transcription. The transcription is independent to the model turn which means it doesnt
275+
* Input transcription. The transcription is independent to the model turn which means it doesn't
276276
* imply any ordering between transcription and model turn.
277277
*/
278278
@JsonProperty("inputTranscription")
@@ -285,7 +285,7 @@ public void setInputTranscription(@Nullable Transcription inputTranscription) {
285285
}
286286

287287
/**
288-
* Output transcription. The transcription is independent to the model turn which means it doesnt
288+
* Output transcription. The transcription is independent to the model turn which means it doesn't
289289
* imply any ordering between transcription and model turn.
290290
*/
291291
@JsonProperty("outputTranscription")

core/src/main/java/com/google/adk/models/LlmResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@ public abstract class LlmResponse extends JsonBaseModel {
117117
public abstract Optional<String> modelVersion();
118118

119119
/**
120-
* Input transcription. The transcription is independent to the model turn which means it doesnt
120+
* Input transcription. The transcription is independent to the model turn which means it doesn't
121121
* imply any ordering between transcription and model turn.
122122
*/
123123
@JsonProperty("inputTranscription")
124124
public abstract Optional<Transcription> inputTranscription();
125125

126126
/**
127-
* Output transcription. The transcription is independent to the model turn which means it doesnt
127+
* Output transcription. The transcription is independent to the model turn which means it doesn't
128128
* imply any ordering between transcription and model turn.
129129
*/
130130
@JsonProperty("outputTranscription")

0 commit comments

Comments
 (0)