Skip to content

Commit

Permalink
fix typo (jb)
Browse files Browse the repository at this point in the history
  • Loading branch information
julialeex committed Jan 30, 2025
1 parent c93fac5 commit 3092a32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ package com.sourcegraph.cody.agent.protocol_generated;
import com.google.gson.annotations.SerializedName;

data class Cache_controlParams(
val type: TypeEnum? = null, // Oneof: emphemeral
val type: TypeEnum? = null, // Oneof: ephemeral
) {

enum class TypeEnum {
@SerializedName("emphemeral") Emphemeral,
@SerializedName("ephemeral") Ephemeral,
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ object Constants {
const val edit = "edit"
const val `edit-file` = "edit-file"
const val editor = "editor"
const val emphemeral = "emphemeral"
const val enabled = "enabled"
const val enterprise = "enterprise"
const val `enterprise-user-logged-into-dotcom` = "enterprise-user-logged-into-dotcom"
const val ephemeral = "ephemeral"
const val error = "error"
const val experimental = "experimental"
const val file = "file"
Expand Down

0 comments on commit 3092a32

Please sign in to comment.