Skip to content

Commit

Permalink
Change numbers to letters
Browse files Browse the repository at this point in the history
  • Loading branch information
Nosferatul committed Jun 25, 2017
1 parent fa7bd17 commit 2f0f311
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion coalib/results/result_actions/ApplyPatchAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def apply(self,
file_diff_dict,
no_orig: bool=False):
"""
Apply patch
(A)pply patch
:param no_orig: Whether or not to create .orig backup files
"""
Expand Down
2 changes: 1 addition & 1 deletion coalib/results/result_actions/IgnoreResultAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def is_applicable(result: Result, original_file_dict, file_diff_dict):
def apply(self, result, original_file_dict, file_diff_dict, language: str,
no_orig: bool=False):
"""
Add ignore comment
Add (I)gnore comment
"""

ignore_comment = self.get_ignore_comment(result.origin, language)
Expand Down
2 changes: 1 addition & 1 deletion coalib/results/result_actions/OpenEditorAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def build_editor_call_args(self, editor, editor_info, filenames):

def apply(self, result, original_file_dict, file_diff_dict, editor: str):
"""
Open file(s)
(O)pen file
:param editor: The editor to open the file with.
"""
Expand Down
2 changes: 1 addition & 1 deletion coalib/results/result_actions/PrintAspectAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def is_applicable(result: Result, original_file_dict, file_diff_dict):

def apply(self, result, original_file_dict, file_diff_dict):
"""
Print Aspect Information
Print Aspec(T) Information
"""
print(type(result.aspect).__qualname__ + '\n' +
type(result.aspect).docs.definition)
Expand Down
2 changes: 1 addition & 1 deletion coalib/results/result_actions/PrintDebugMessageAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def is_applicable(result: Result, original_file_dict, file_diff_dict):

def apply(self, result, original_file_dict, file_diff_dict):
"""
Print debug message
Print (D)ebug message
"""
print(result.debug_msg)

Expand Down
2 changes: 1 addition & 1 deletion coalib/results/result_actions/PrintMoreInfoAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def is_applicable(result: Result, original_file_dict, file_diff_dict):

def apply(self, result, original_file_dict, file_diff_dict):
"""
Print more info
Print (M)ore info
"""
print(result.additional_info)

Expand Down
2 changes: 1 addition & 1 deletion coalib/results/result_actions/ShowPatchAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def apply(self,
colored: bool=True,
show_result_on_top: bool=False):
"""
Show patch
(S)how patch
:param colored:
Whether or not to use colored output.
Expand Down

0 comments on commit 2f0f311

Please sign in to comment.