Skip to content

Commit 4f997f7

Browse files
authored
Add missing semicolon in binding definition. (tensorflow#119)
I noticed this while working on a design doc today - simple fix :-) <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/tensorflow/tfjs-node/119) <!-- Reviewable:end -->
1 parent 1615dea commit 4f997f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tfjs_binding.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export interface TFJSBinding {
4545
// Executes an Op on the backend, returns an array of output TensorMetadata:
4646
executeOp(
4747
opName: string, opAttrs: TFEOpAttr[], inputTensorIds: number[],
48-
numOutputs: number): TensorMetadata[]
48+
numOutputs: number): TensorMetadata[];
4949

5050
// TF Types
5151
TF_FLOAT: number;

0 commit comments

Comments
 (0)