Skip to content

Commit

Permalink
voicevox_core_macrosのdocを更新
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Mar 9, 2024
1 parent 6cca5d0 commit cb2637a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/voicevox_core_macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ use syn::parse_macro_input;
/// use enum_map::Enum;
/// use macros::InferenceOperation;
///
/// pub(crate) enum InferenceDomainImpl {}
/// pub(crate) enum TalkDomain {}
///
/// impl InferenceDomain for InferenceDomainImpl {
/// type Operation = InferenceOperationImpl;
/// impl InferenceDomain for TalkDomain {
/// type Operation = TalkOperation;
/// }
///
/// #[derive(Clone, Copy, Enum, InferenceOperation)]
/// #[inference_operation(
/// type Domain = InferenceDomainImpl;
/// type Domain = TalkDomain;
/// )]
/// pub(crate) enum InferenceOperationImpl {
/// pub(crate) enum TalkOperation {
/// #[inference_operation(
/// type Input = PredictDurationInput;
/// type Output = PredictDurationOutput;
Expand Down

0 comments on commit cb2637a

Please sign in to comment.