Skip to content

Commit ce632cd

Browse files
committed
Fixed README
1 parent a7a3cc0 commit ce632cd

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
A Rust implementation of the [WebGraph framework] for graph compression.
1212

1313
WebGraph is a framework for graph compression aimed at studying web graphs, but
14-
currently being applied to several other type of graphs. It
14+
currently being applied to several other types of graphs. It
1515
provides simple ways to manage very large graphs, exploiting modern compression
1616
techniques. More precisely, it is currently made of:
1717

@@ -22,7 +22,7 @@ techniques. More precisely, it is currently made of:
2222
- Algorithms for compressing web graphs that exploit gap compression and
2323
differential compression (à la
2424
[LINK](http://www.hpl.hp.com/techreports/Compaq-DEC/SRC-RR-175.html)),
25-
intervalisation, and ζ codes to provide a high compression ratio (see [our
25+
intervali<ation, and ζ codes to provide a high compression ratio (see [our
2626
datasets](http://law.di.unimi.it/datasets.php)). The algorithms are controlled
2727
by several parameters, which provide different tradeoffs between access speed
2828
and compression ratio.
@@ -31,7 +31,7 @@ techniques. More precisely, it is currently made of:
3131
it, using lazy techniques that delay the decompression until it is actually
3232
necessary.
3333

34-
- Algorithms for analysing very large graphs, such as {@link
34+
- Algorithms for analyzing very large graphs, such as {@link
3535
it.unimi.dsi.webgraph.algo.HyperBall}, which has been used to show that
3636
Facebook has just [four degrees of
3737
separation](http://vigna.di.unimi.it/papers.php#BBRFDS).
@@ -45,7 +45,7 @@ techniques. More precisely, it is currently made of:
4545
2.1+](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) or the [Apache
4646
Software License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
4747

48-
- [Data sets](http://law.di.unimi.it/datasets.php) for large graph (e.g.,
48+
- [Data sets](http://law.di.unimi.it/datasets.php) for large graphs (e.g.,
4949
billions of links).
5050

5151
## Citation
@@ -114,17 +114,18 @@ for_!((src, succ) in graph {
114114

115115
## Operating on Graphs
116116

117-
There are many operations available on graphs, such as [`transpose`] and
118-
[`simplify`]. You can [permute] a graph.
117+
There are many operations available on graphs, such as [transpose] and
118+
[simplify], and [permute].
119119

120120
## Acknowledgments
121121

122122
This software has been partially supported by project SERICS (PE00000014) under
123123
the NRRP MUR program funded by the EU - NGEU, and by project ANR COREGRAPHIE,
124124
grant ANR-20-CE23-0002 of the French Agence Nationale de la Recherche.
125125

126-
[`transpose`]: <https://docs.rs/webgraph/latest/webgraph/transform/transpose/index.html>
127-
[`simplify`]: <https://docs.rs/webgraph/latest/webgraph/transform/simplify/index.html>
126+
[transpose]: <https://docs.rs/webgraph/latest/webgraph/transform/transpose/index.html>
127+
[simplify]: <https://docs.rs/webgraph/latest/webgraph/transform/simplify/index.html>
128+
[permute]: <https://docs.rs/webgraph/latest/webgraph/transform/perm/index.html>
128129
[`with_basename`]: <https://docs.rs/webgraph/latest/webgraph/struct.BVGraph.html#method.with_basename>
129130
[`BVGraphSeq`]: <https://docs.rs/webgraph/latest/webgraph/struct.BVGraphSeq.html>
130131
[`LoadConfig`]: <https://docs.rs/webgraph/latest/webgraph/struct.LoadConfig.html>
@@ -136,6 +137,5 @@ grant ANR-20-CE23-0002 of the French Agence Nationale de la Recherche.
136137
[LAW website]: <http://law.di.unimi.it/>
137138
[Elias–Fano]: <sux::dict::EliasFano>
138139
[WebGraph framework]: <https://webgraph.di.unimi.it/>
139-
[permute]: <https://docs.rs/webgraph/latest/webgraph/transform/permute/index.html>
140140
[ε-serde]: <nttps://crates.io/crates/epserde/>
141141
[`for_`]: <https://docs.rs/lender/latest/lender/macro.for_.html>

src/traits/split.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub trait SplitLabeling: SequentialLabeling {
5151
/// # Examples
5252
///
5353
/// The code for [`BVGraphSeq`](crate::graphs::bvgraph::sequential::BVGraphSeq) is:
54-
/// ```ìgnore
54+
/// ```ignore
5555
/// impl<F: SequentialDecoderFactory> SplitLabeling for BVGraphSeq<F>
5656
/// where
5757
/// for<'a> <F as SequentialDecoderFactory>::Decoder<'a>: Clone + Send + Sync,
@@ -123,7 +123,7 @@ pub mod seq {
123123
/// # Examples
124124
///
125125
/// The code for [`BVGraph`](crate::graphs::bvgraph::random_access::BVGraph) is
126-
/// ```ìgnore
126+
/// ```ignore
127127
/// impl<F: RandomAccessDecoderFactory> SplitLabeling for BVGraph<F>
128128
/// where
129129
/// for<'a> <F as RandomAccessDecoderFactory>::Decoder<'a>: Send + Sync,

0 commit comments

Comments
 (0)