Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190459 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
gottesmm committed Sep 11, 2013
1 parent 37a8807 commit f495a26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/python/llvm/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ def CreateWithName(cls, module_id):
return m

@property
def data_layout(self):
def datalayout(self):
return lib.LLVMGetDataLayout(self)

@data_layout.setter
def data_layout(self, new_data_layout):
@datalayout.setter
def datalayout(self, new_data_layout):
"""new_data_layout is a string."""
lib.LLVMSetDataLayout(self, new_data_layout)

Expand Down

0 comments on commit f495a26

Please sign in to comment.