Fix typos in util/gdb

This commit is contained in:
Thibault Févry 2013-08-24 19:34:22 +02:00
parent a89f78f469
commit a555469943
3 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ import sys, gdb
def help():
print __doc__
#Force a reload, which is handy if you are interactively editting
#Force a reload, which is handy if you are interactively editing
if 'register_wesnoth_pretty_printers' in sys.modules:
reload(register_wesnoth_pretty_printers)
else:

View File

@ -12,7 +12,7 @@ from wesnoth_type_tools import strip_all_type, dereference_if_possible
class RecursionManager(object):
"""Keeps track of the levels of recrusion and whether expansion should happen or not """
"""Keeps track of the levels of recursion and whether expansion should happen or not """
default = 2
curr = 0

View File

@ -18,7 +18,7 @@ def strip_all_type(val):
return type
def dereference_if_possible(val):
""" Derefence val if possible"""
""" Dereference val if possible"""
# Get the type.
type = val.type.unqualified()