Skip to content

Commit 1a24522

Browse files
committed
Fix property documentation
Fix spelling and copy/paste errors in the documentation of the properties of the comment_t object.
1 parent 2fe1b7a commit 1a24522

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pygccxml/declarations/comment.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def begin_offset(self, begin_offset):
7171
@property
7272
def begin_column(self):
7373
"""An integer value which corresponds to the
74-
line of the file where the comment begins
74+
column of the file where the comment begins
7575
@type: int """
7676
return self._begin_column
7777

@@ -105,7 +105,7 @@ def end_offset(self, end_offset):
105105
@property
106106
def end_column(self):
107107
"""An integer value which corresponds to the
108-
coloumn of character in a line of the file
108+
column of character in a line of the file
109109
where the comment ends
110110
@type: int """
111111
return self._end_column
@@ -116,7 +116,7 @@ def end_column(self, end_column):
116116

117117
@property
118118
def text(self):
119-
"""An list of strings where each entry in the list
119+
"""A list of strings where each entry in the list
120120
is one line of the comment. These comments will not
121121
end in a newline
122122
@type: list """

0 commit comments

Comments
 (0)