Skip to content

Commit

Permalink
fix: typo on garbage file
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Jan 16, 2019
1 parent 88bd655 commit 1d16052
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Context.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {GPhoto2Driver} from "../driver/GPhoto2Driver";
import {PointerContext} from "../driver/modules";
import {ICloseable} from "../interfaces/ICloseable";
import {addInstance, removeInstance} from "./Garbarge";
import {addInstance, removeInstance} from "./Garbage";

export class Context implements ICloseable {
/**
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Liveview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {ICloseable, ILiveviewOptions} from "../interfaces";
import {CameraFile} from "./CameraFile";
import {CameraFileFromFd} from "./CameraFileFromFd";
import {Context} from "./Context";
import {addInstance} from "./Garbarge";
import {addInstance} from "./Garbage";

export class Liveview extends EventEmitter implements ICloseable {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/components/PointerWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {alloc, Type} from "ref";
import {checkCode, closeQuietly, GPCodes, GPhoto2Driver} from "../driver";
import {PointerOf} from "../driver/types";
import {ICloseable} from "../interfaces";
import {addInstance, removeInstance} from "./Garbarge";
import {addInstance, removeInstance} from "./Garbage";

export interface IPointerWrapperOptions {
method: string;
Expand Down

0 comments on commit 1d16052

Please sign in to comment.