Skip to content

Commit

Permalink
Fix semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
abb128 authored Aug 17, 2023
1 parent c6200a7 commit 1b5616a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/csharp/nuget/src/AprilSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ AprilToken[] o_tokens
public AprilSession(AprilModel model, SessionCallback callback, bool async = false, bool noRT = false, string speakerName = "") {
this.model = model;
this.callback = callback;
this.handler = new AprilRecognitionResultHandler(this.handleAprilCallback)
this.handler = new AprilRecognitionResultHandler(this.handleAprilCallback);

AprilConfig config = new AprilConfig();
config.handler = this.handler;
Expand Down

0 comments on commit 1b5616a

Please sign in to comment.