Skip to content

Commit

Permalink
neo_doxygen: fix some typos and warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Laferrière <[email protected]>
  • Loading branch information
xymus committed Sep 15, 2016
1 parent f0482d2 commit cdcfa6d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions contrib/neo_doxygen/src/model/graph.nit
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ end
abstract class Compound
super Entity

# Set the declared visibility (the proctection) of the compound.
# Set the declared visibility (the protection) of the compound.
fun visibility=(visibility: String) do
self["visibility"] = visibility
end
Expand All @@ -233,7 +233,7 @@ abstract class Compound

# Declare an inner namespace.
#
# Note: Althought Doxygen indicates that the name is optional,
# Note: Although Doxygen indicates that the name is optional,
# declarations with an empty name are not supported yet, except for the root
# namespace. For the root namespace, both arguments are empty.
#
Expand All @@ -246,7 +246,7 @@ abstract class Compound

# Declare an inner class.
#
# Note: Althought Doxygen indicates that both arguments are optional,
# Note: Although Doxygen indicates that both arguments are optional,
# declarations with an empty ID are not supported yet.
#
# Parameters:
Expand Down Expand Up @@ -292,7 +292,7 @@ class Namespace
self.labels.add("MGroup")
end

redef fun declare_namespace(id: String, full_name: String) do
redef fun declare_namespace(id, full_name) do
inner_namespaces.add new NamespaceRef(id, full_name)
end

Expand Down
5 changes: 3 additions & 2 deletions contrib/neo_doxygen/src/model/location.nit
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ class Location
# The one-based column index of the last character.
var column_end: Int = 1 is writable

redef fun to_s: String do
redef fun to_s do
var path = path
var file_part = "/dev/null:"
if path != null and path.length > 0 then file_part = "{path.as(not null)}:"
if path != null and path.length > 0 then file_part = "{path}:"
return "{file_part}{line_start},{column_start}--{line_end},{column_end}"
end

Expand Down

0 comments on commit cdcfa6d

Please sign in to comment.