summaryrefslogtreecommitdiff
path: root/app/graphql/types/diff_paths_input_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/diff_paths_input_type.rb')
-rw-r--r--app/graphql/types/diff_paths_input_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/diff_paths_input_type.rb b/app/graphql/types/diff_paths_input_type.rb
index e1d3d58411c..cdcff1a7e34 100644
--- a/app/graphql/types/diff_paths_input_type.rb
+++ b/app/graphql/types/diff_paths_input_type.rb
@@ -3,8 +3,8 @@
module Types
class DiffPathsInputType < BaseInputObject
argument :old_path, GraphQL::Types::String, required: false,
- description: 'The path of the file on the start sha.'
+ description: 'Path of the file on the start SHA.'
argument :new_path, GraphQL::Types::String, required: false,
- description: 'The path of the file on the head sha.'
+ description: 'Path of the file on the HEAD SHA.'
end
end