Skip to content

Commit 3578cb3

Browse files
committed
doc: remove whitespaces at EOL
Signed-off-by: Igor Gnatenko <[email protected]>
1 parent 6ba90b5 commit 3578cb3

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

doc/libsolv-bindings.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ natural constant subs), so don't forget the leading ``$'' when accessing a
5959
constant. Also do not forget to prepend the namespace of the constant:
6060

6161
$pool->set_flag($solv::Pool::POOL_FLAG_OBSOLETEUSESCOLORS, 1);
62-
62+
6363

6464
Python Specifics
6565
----------------
@@ -185,7 +185,7 @@ to a libsolv class are prefixed with the class name:
185185
186186
TCL $pool set_flag $solv::Pool_POOL_FLAG_OBSOLETEUSESCOLORS 1
187187
TCL puts [$solvable lookup_str $solv::SOLVABLE_SUMMARY]
188-
188+
189189
190190
The Solv Class
191191
--------------
@@ -248,7 +248,7 @@ Repositories, Dependencies, each indexed by Ids.
248248
pool = Solv::Pool.new()
249249
250250
Create a new pool instance. In most cases you just need one pool.
251-
Note that the returned object "owns" the pool, i.e. if the object is
251+
Note that the returned object "owns" the pool, i.e. if the object is
252252
freed, the pool is also freed. You can use the disown method to
253253
break this ownership relation.
254254
@@ -554,7 +554,7 @@ selections.
554554
my $sel = $pool->Selection_all();
555555
sel = pool.Selection_all()
556556
sel = pool.Selection_all()
557-
557+
558558
Create a selection containing all packages. Useful as starting point for
559559
intersecting other selections or for update/distupgrade jobs.
560560
@@ -860,7 +860,7 @@ The id of the repository.
860860
$repo->{name}
861861
repo.name
862862
repo.name
863-
863+
864864
The repositories name. To libsolv, the name is just a string with no specific
865865
meaning.
866866
@@ -1371,7 +1371,7 @@ a specific id and want to avoid the string compare overhead.
13711371
my @deps = $solvable->lookup_deparray($keyname);
13721372
deps = solvable.lookup_deparray(keyname)
13731373
deps = solvable.lookup_deparray(keyname)
1374-
1374+
13751375
Generic lookup methods. Retrieve data stored for the specific keyname.
13761376
The lookup_idarray() method will return an array of Ids, use
13771377
lookup_deparray if you want an array of Dependency objects instead.
@@ -1719,7 +1719,7 @@ the version, and the architecture of a package.
17191719
*SELECTION_DOTARCH*::
17201720
Allow an ".<architecture>" suffix when matching names or
17211721
provides.
1722-
1722+
17231723
*SELECTION_REL*::
17241724
Allow the specification of a relation when matching names
17251725
or dependencies, e.g. "name >= 1.2".
@@ -1945,7 +1945,7 @@ Update the matching installed packages to their best version. If none
19451945
of the specified packages are installed, try to update the installed
19461946
packages to the specified versions. See the section about targeted
19471947
updates about more information.
1948-
1948+
19491949
*SOLVER_WEAKENDEPS*::
19501950
Allow to break the dependencies of the matching packages. Handle with care.
19511951

@@ -3164,7 +3164,7 @@ in passive mode, but
31643164
update A-2-1 (other: A-1-1)
31653165
erase B
31663166
3167-
in active mode. If the mode contains SOLVER_TRANSACTION_SHOW_ALL, the
3167+
in active mode. If the mode contains SOLVER_TRANSACTION_SHOW_ALL, the
31683168
passive mode list will be unchanged but the active mode list will just
31693169
contain A-2-1.
31703170
@@ -3290,7 +3290,7 @@ Add a (binary) string to the checksum.
32903290
chksum.add_fp(file)
32913291
32923292
Add the contents of a file to the checksum.
3293-
3293+
32943294
void add_stat(const char *filename)
32953295
$chksum->add_stat($filename);
32963296
chksum.add_stat(filename)
@@ -3422,7 +3422,7 @@ The Repodata Class
34223422
The Repodata stores attributes for packages and the repository itself, each
34233423
repository can have multiple repodata areas. You normally only need to
34243424
directly access them if you implement lazy downloading of repository data.
3425-
Repodata areas are created by calling the repository's add_repodata() method
3425+
Repodata areas are created by calling the repository's add_repodata() method
34263426
or by using repo_add methods without the REPO_REUSE_REPODATA or REPO_USE_LOADING
34273427
flag.
34283428

0 commit comments

Comments
 (0)