Skip to content

Commit

Permalink
capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Mar 19, 2024
1 parent 2ec94ae commit 2ea692d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/splat/segtypes/ps2/ctor.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ...disassembler.disassembler_section import DisassemblerSection


class PS2SegCtor(CommonSegData):
class Ps2SegCtor(CommonSegData):
"""Segment that contains pointers to C++ global data initialization functions"""

def get_linker_section(self) -> str:
Expand Down
2 changes: 1 addition & 1 deletion src/splat/segtypes/ps2/lit4.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ...disassembler.disassembler_section import DisassemblerSection


class PS2SegLit4(CommonSegData):
class Ps2SegLit4(CommonSegData):
"""Segment that only contains single-precision floats"""

def get_linker_section(self) -> str:
Expand Down
2 changes: 1 addition & 1 deletion src/splat/segtypes/ps2/lit8.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ...disassembler.disassembler_section import DisassemblerSection


class PS2SegLit8(CommonSegData):
class Ps2SegLit8(CommonSegData):
"""Segment that only contains double-precision floats"""

def get_linker_section(self) -> str:
Expand Down
2 changes: 1 addition & 1 deletion src/splat/segtypes/ps2/vtables.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ...disassembler.disassembler_section import DisassemblerSection


class PS2SegVtables(CommonSegData):
class Ps2SegVtables(CommonSegData):
"""Segment that contains a pointer to C++ vtables"""

def get_linker_section(self) -> str:
Expand Down

0 comments on commit 2ea692d

Please sign in to comment.