Skip to content

Commit 3472001

Browse files
authored
Merge pull request #470 from der-gabe/very-minor-doc-improvements
Very minor doc improvements
2 parents 4cb7359 + 77c937b commit 3472001

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

doc/libsolv-bindings.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ libsolv-bindings - access libsolv from perl/python/ruby
1212
Description
1313
-----------
1414
Libsolv's language bindings offer an abstract, object orientated interface
15-
to the library. The supported languages are currently perl, python, and ruby.
16-
All example code (except in the specifics sections, of course) lists first
17-
the ``C-ish'' interface, then the syntax for perl, python, and ruby (in that
18-
order).
15+
to the library. The supported languages are currently perl, python, ruby and
16+
tcl. All example code (except in the specifics sections, of course) lists
17+
first the ``C-ish'' interface, then the syntax for perl, python, and ruby
18+
(in that order).
1919

2020

2121
Perl Specifics

doc/libsolv-constantids.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Constant Ids are Ids of strings that are often needed. They are defined
1515
to ease programming and reduce the number of pool_str2id calls. The
1616
constant Ids are part of the binary ABI of libsolv, a minor version
1717
update will only add new constants and not change existing Ids to
18-
maintain compatible. The on-disk solv format works does not use the
19-
fixed Ids, but instead references the strings, so solv files can still
20-
be read when the ABI is broken.
18+
maintain compatibility. The on-disk solv format does not use the fixed
19+
Ids, but instead references the strings, so solv files can still be
20+
read when the ABI is broken.
2121

2222

2323
Special Strings
@@ -31,7 +31,7 @@ Special Strings
3131

3232
Solvable Attributes
3333
-------------------
34-
These are Ids for keyname of attributes. They can be used in the
34+
These are Ids for keynames of attributes. They can be used in the
3535
lookup and storage functions to select the correct attribute in the
3636
solvable. The descriptions below describe the intended semantics
3737
of the values stored in the attribute with the keyname.

doc/libsolv-history.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ solving on Debian. Looking at the SAT entry in Wikipedia, it was easy
5353
to see that this indeed was the missing piece: SAT algorithms are well
5454
researched and there are quite some open source implementations.
5555
I decided to look at the minisat code, as it is one of the fastest
56-
solvers while consisting of too many lines of code.
56+
solvers while consisting of not too many lines of code.
5757

5858
Of course, directly using minisat would not work, as a package solver
5959
does not need to find just one correct solution, but it also has to
6060
optimize some metrics, i.e. keep as many packages installed as possible.
61-
Thus, I needed to write my own solver incorporation the ideas and
61+
Thus, I needed to write my own solver, incorporating the ideas and
6262
algorithms used in minisat. This wasn't very hard, and at the end of
6363
the hack week the solver calculated the first right solutions.
6464

doc/libsolv.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The libsolv documentation is split into multiple parts:
2828
Pointer Validity
2929
----------------
3030
Note that all pointers to objects that have an Id have only a limited
31-
validity period, with the exception of Repo pointers. There are only
31+
validity period, with the exception of Repo pointers. They are only
3232
guaranteed to be valid until a new object of that type is added or an
3333
object of that type is removed. Thus pointers to Solvable objects are only
3434
valid until another solvable is created, because adding a Solvable may

0 commit comments

Comments
 (0)