manpage-fix.diff 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. Description: Fix typos and hyphenation
  2. Author: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>
  3. Forwarded: yes
  4. --- a/doc/drawtiming.1
  5. +++ b/doc/drawtiming.1
  6. @@ -56,7 +56,7 @@
  7. .It Fl -pagesize Ar WidthxHeight
  8. Scale the diagram to fit given image size.
  9. .It Fl -aspect
  10. -Maintain fixed aspect ratio if --pagesize given.
  11. +Maintain fixed aspect ratio if \-\-pagesize given.
  12. .It Fl -cell-height Ar H
  13. Height of the each signal in pixels. Default is 32.
  14. .It Fl -cell-width Ar W
  15. @@ -101,23 +101,23 @@
  16. changing its value.
  17. .El
  18. .Pp
  19. -Statements are seperated by the following symbols:
  20. +Statements are separated by the following symbols:
  21. .Bl -tag -width "-tD>"
  22. .It ,
  23. -The comma seperator is used to seperate statements without
  24. +The comma separator is used to separate statements without
  25. affecting the dependency list or clock (ie: the next statement will
  26. add to the dependency list).
  27. .It ;
  28. -The semicolon seperator resets the list of dependencies without
  29. +The semicolon separator resets the list of dependencies without
  30. incrementing the clock
  31. .It .
  32. -The period seperator resets the list of dependencies and
  33. +The period separator resets the list of dependencies and
  34. increments the clock.
  35. .It =>
  36. -The "causes" seperator renders dependency arrows based on the
  37. +The "causes" separator renders dependency arrows based on the
  38. current list of dependencies and then resets the dependency list.
  39. .It -tD>
  40. -The "delay" seperator renders a delay arrow from the last dependency
  41. +The "delay" separator renders a delay arrow from the last dependency
  42. with the annotation
  43. .Em tD .
  44. .El
  45. @@ -173,7 +173,7 @@
  46. value if their initial value is not given.
  47. .Pp
  48. Independent signal transitions which occur simultaneously are normally
  49. -seperated by commas. Since signals aren't normally expected to change
  50. +separated by commas. Since signals aren't normally expected to change
  51. simultaneously, the initial state is a good example of this:
  52. .Pp
  53. .Dl POWER=0, FIRE=0, ARMED=0, LED=OFF, COUNT=N.
  54. @@ -194,7 +194,7 @@
  55. .Pp
  56. .Dl POWER=1 => LED=GREEN.
  57. .Pp
  58. -For signal state changes with multiple dependencies, seperate the
  59. +For signal state changes with multiple dependencies, separate the
  60. dependencies with commas:
  61. .Pp
  62. .Dl FIRE, ARMED => LED=RED.