Skip to content

Commit

Permalink
[OneExplorer] Fix comment (#1451)
Browse files Browse the repository at this point in the history
This commit fixes typo in comments.
- input_file->input_path
- output_file->output_path.

ONE-vscode-DCO-1.0-Signed-off-by: Dayoung Lee <[email protected]>
  • Loading branch information
dayo09 authored Nov 4, 2022
1 parent fbd12ae commit e5dd2b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/OneExplorer/ArtifactLocator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,13 @@ export class Locator {
* EXAMPLE - file
*
* [one-import-tflite] <--- section: "one-import-tflite"
* input_file = "model.tflite" <--- key: input_file
* output_file = "model.circle" <--- key: output_file
* input_path = "model.tflite" <--- key: input_path
* output_path = "model.circle" <--- key: output_path
*
* EXAMPLE - imported object
*
* iniObj[one-import-tflite]['input_file'] === "model.tflite"
* iniObj[one-import-tflite]['input_file'] === "model.circle"
* iniObj[one-import-tflite]['input_path'] === "model.tflite"
* iniObj[one-import-tflite]['input_path'] === "model.circle"
*/
public locate(iniObj: object, dir: string): string[] {
assert.strictEqual(
Expand Down

0 comments on commit e5dd2b7

Please sign in to comment.