@@ -59,7 +59,7 @@ natural constant subs), so don't forget the leading ``$'' when accessing a
5959constant. 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
6464Python 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
190190The Solv Class
191191--------------
@@ -248,7 +248,7 @@ Repositories, Dependencies, each indexed by Ids.
248248 pool = Solv::Pool.new()
249249
250250Create 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
252252freed, the pool is also freed. You can use the disown method to
253253break 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+
558558Create a selection containing all packages. Useful as starting point for
559559intersecting 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+
864864The repositories name. To libsolv, the name is just a string with no specific
865865meaning.
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+
13751375Generic lookup methods. Retrieve data stored for the specific keyname.
13761376The lookup_idarray() method will return an array of Ids, use
13771377lookup_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*::
17201720Allow an ".<architecture>" suffix when matching names or
17211721provides.
1722-
1722+
17231723*SELECTION_REL*::
17241724Allow the specification of a relation when matching names
17251725or dependencies, e.g. "name >= 1.2".
@@ -1945,7 +1945,7 @@ Update the matching installed packages to their best version. If none
19451945of the specified packages are installed, try to update the installed
19461946packages to the specified versions. See the section about targeted
19471947updates about more information.
1948-
1948+
19491949*SOLVER_WEAKENDEPS*::
19501950Allow 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
31683168passive mode list will be unchanged but the active mode list will just
31693169contain A-2-1.
31703170
@@ -3290,7 +3290,7 @@ Add a (binary) string to the checksum.
32903290 chksum.add_fp(file)
32913291
32923292Add 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
34223422The Repodata stores attributes for packages and the repository itself, each
34233423repository can have multiple repodata areas. You normally only need to
34243424directly 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
34263426or by using repo_add methods without the REPO_REUSE_REPODATA or REPO_USE_LOADING
34273427flag.
34283428
0 commit comments