From dcea8d1745caf5e5295b26b5a02403479c1ad4e2 Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Wed, 18 Nov 2020 17:24:28 +0100 Subject: [PATCH] Fix comment line length --- sheets/irb | 6 ++++-- sheets/ocaml | 4 ++-- sheets/percol | 4 ++-- sheets/pmset | 4 ++-- sheets/ranlib | 8 ++++---- 5 files changed, 14 insertions(+), 12 deletions(-) diff --git a/sheets/irb b/sheets/irb index 84345ca..5631983 100644 --- a/sheets/irb +++ b/sheets/irb @@ -1,5 +1,7 @@ -# interactive ruby. irb is a tool to execute interactively ruby expressions read from stdin +# irb +# Interactive ruby. A tool to execute interactively Ruby expressions +# read from stdin. -# start irb +# Start irb irb diff --git a/sheets/ocaml b/sheets/ocaml index 0d21e03..64cde47 100644 --- a/sheets/ocaml +++ b/sheets/ocaml @@ -1,6 +1,6 @@ # OCaml -# OCaml, originally named Objective Caml, is the main implementation of the programming language Caml. -# A member of the ML language family. +# OCaml, originally named Objective Caml, is the main implementation of +# the programming language Caml. A member of the ML language family. # Compile into a bytecode executable: ocamlc hello.ml -o hello diff --git a/sheets/percol b/sheets/percol index 999d087..572b9c7 100644 --- a/sheets/percol +++ b/sheets/percol @@ -1,6 +1,6 @@ # percol -# -# adds flavor of interactive filtering to the traditional pipe concept of UNIX shell +# adds flavor of interactive filtering to the traditional pipe concept +# of UNIX shell # to install percol sudo pip install percol diff --git a/sheets/pmset b/sheets/pmset index f2f28b9..195364e 100644 --- a/sheets/pmset +++ b/sheets/pmset @@ -1,6 +1,6 @@ # pmset -# -# Configure macOS power management settings, as one might do in System Preferences > Energy Saver. +# Configure macOS power management settings, as one might do in +# System Preferences > Energy Saver. # Commands that modify settings must begin with sudo (Mac OS X) # Display the current power management settings: diff --git a/sheets/ranlib b/sheets/ranlib index 55d45a9..3f69e06 100644 --- a/sheets/ranlib +++ b/sheets/ranlib @@ -1,9 +1,9 @@ # ranlib -# -# generates an index to the contents of an archive and stores it in the archive. -# The index lists each symbol defined by a member of an archive that is a relocatable object file. +# Generate an index to the contents of an archive and stores it in the archive. +# The index lists each symbol defined by a member of an archive that is +# a relocatable object file. -# This creates an index of the contents of fruits.a and stores the index in fruits.a +# Creates an index of the contents of fruits.a and store the index in fruits.a. # This is useful for linking and in case the objects call each other. ranlib fruits.a # after