summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorPaul Cochrane <paul@liekut.de>2013-11-28 14:57:45 +0100
committerPaul Cochrane <paul@liekut.de>2013-11-28 14:57:45 +0100
commitc3a874766f86e7ded87a2e386be3b0f3ab8dc638 (patch)
tree5ef1228ae98a940af3e1e727a593c888f623cb8c /man
parenta88e5cdcb0f14fa48957fbc02f232d1d79c6444a (diff)
downloadpylint-c3a874766f86e7ded87a2e386be3b0f3ab8dc638.tar.gz
[man] corrected minor typos and grammatical errors in pyreverse man page
Diffstat (limited to 'man')
-rw-r--r--man/pyreverse.116
1 files changed, 8 insertions, 8 deletions
diff --git a/man/pyreverse.1 b/man/pyreverse.1
index d37f83d..a68ceb5 100644
--- a/man/pyreverse.1
+++ b/man/pyreverse.1
@@ -10,7 +10,7 @@ them.
.SH DESCRIPTION
.B pyreverse
-is a python source analyzer. It parses a python packages and produces UML
+is a python source analyzer. It parses python packages and produces UML
diagrams in different output formats. (dot, all formats available for dot,
and vcg).
With different options, you can have fine tuning on what and how modules,
@@ -45,10 +45,10 @@ modes using '+' like 'SPECIAL+OTHER'. Correct modes are :
- 'PUB_ONLY' : filter all non public attributes (default)
- 'ALL' : no filter
- 'SPECIAL' : filter Python special functions except constructor
- - 'OTHER' : filter protected and private attributes [currentt: PUB_ONLY]
+ - 'OTHER' : filter protected and private attributes [current: PUB_ONLY]
.IP "-d<file>, --diadefs=<file>"
-create diagram according to the diagrams definitions in <file>
+create diagram according to the diagram definitions in <file>
.IP "-c <class>, --class=<class>"
create a class diagram with all classes related to <class> [current: none]
the class must be in the file <modules>. By default, this will include all
@@ -69,8 +69,8 @@ show recursively all associated off all associated classes [current: none]
.IP "-b, --builtin"
include builtin objects in representation of classes [current: False]
.IP "-m [yn], --module-names=[yn]"
-include module name in representation of classes. This will include full
-module path in the class name. [current: none]
+include module name in representation of classes. This will include the
+full module path in the class name. [current: none]
.IP "-k, --only-classnames"
don't show attributes and methods in the class boxes;
@@ -83,15 +83,15 @@ are all formats that dot can produce and
[default: dot]
.SH EXAMPLES
- Here are some examples for command line options :
+Here are some examples for command line options:
.IP "pyreverse <project> -a1 -s1 -m"
\-a1 \-s1 will include one level of ancestor and associated classes in the
diagram of the <project> modules, while \-m will show the full module
-path of each class. You can use the same way the
+path of each class. You can use the
.B -a, -s, -A, -S
-options.
+options in the same way.
Note that on class diagrams (using
.B -c
) \-a and \-s will rather reduce than enlarge your diagram.