Skip to content
This repository was archived by the owner on May 12, 2018. It is now read-only.

Typo herlper -> helper. #43

Merged
merged 1 commit into from
Sep 15, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/gitlab_git.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Gitlab::Git
require_relative "gitlab_git/popen"
require_relative "gitlab_git/encoding_herlper"
require_relative 'gitlab_git/encoding_helper'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

require_relative "gitlab_git/blame"
require_relative "gitlab_git/blob"
require_relative "gitlab_git/commit"
Expand Down
2 changes: 1 addition & 1 deletion lib/gitlab_git/repository.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Gitlab::Git::Repository is a wrapper around native Grit::Repository object
# We dont want to use grit objects inside app/
# It helps us easily migrate to rugged in future
require_relative 'encoding_herlper'
require_relative 'encoding_helper'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.

require 'tempfile'

module Gitlab
Expand Down