Skip to content

Commit 4aadcfd

Browse files
committed
Fix repo URL casing to FastPFOR (Pages paths are case-sensitive)
1 parent 12290cc commit 4aadcfd

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FastPFor website (gh-pages)
22

33
This branch holds **only** the source of the project website published at
4-
<https://fast-pack.github.io/FastPFor/>.
4+
<https://fast-pack.github.io/FastPFOR/>.
55

66
It is a plain static site — no build step, no Jekyll (note the `.nojekyll` file).
77

@@ -21,4 +21,4 @@ python3 -m http.server 8000 # then visit http://localhost:8000
2121

2222
Every push to this branch redeploys the site via GitHub Actions.
2323

24-
> The library source code lives on the [`master`](https://github.com/fast-pack/FastPFor/tree/master) branch.
24+
> The library source code lives on the [`master`](https://github.com/fast-pack/FastPFOR/tree/master) branch.

index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<meta property="og:type" content="website">
1212
<meta property="og:title" content="FastPFor — Fast integer compression in C++">
1313
<meta property="og:description" content="SIMD-accelerated integer compression. Decode billions of integers per second (15 GB/s+) — far faster than gzip, LZ4 or Snappy.">
14-
<meta property="og:url" content="https://fast-pack.github.io/FastPFor/">
14+
<meta property="og:url" content="https://fast-pack.github.io/FastPFOR/">
1515
<meta name="twitter:card" content="summary">
1616

1717
<link rel="icon" href="assets/img/favicon.svg" type="image/svg+xml">
@@ -35,7 +35,7 @@
3535
<a href="#install">Install</a>
3636
<a href="#bindings">Bindings</a>
3737
<a href="#papers">Papers</a>
38-
<a class="nav-gh" href="https://github.com/fast-pack/FastPFor" target="_blank" rel="noopener">GitHub ★</a>
38+
<a class="nav-gh" href="https://github.com/fast-pack/FastPFOR" target="_blank" rel="noopener">GitHub ★</a>
3939
</nav>
4040
</div>
4141
</header>
@@ -56,13 +56,13 @@ <h1>Decode <span class="grad">billions of integers</span><br>per second.</h1>
5656
</p>
5757
<div class="cta">
5858
<a class="btn btn-primary" href="#install">Get started</a>
59-
<a class="btn btn-ghost" href="https://github.com/fast-pack/FastPFor" target="_blank" rel="noopener">View on GitHub</a>
59+
<a class="btn btn-ghost" href="https://github.com/fast-pack/FastPFOR" target="_blank" rel="noopener">View on GitHub</a>
6060
</div>
6161
<div class="badges">
62-
<img src="https://github.com/fast-pack/FastPFor/workflows/Ubuntu-CI/badge.svg" alt="Ubuntu CI status">
62+
<img src="https://github.com/fast-pack/FastPFOR/workflows/Ubuntu-CI/badge.svg" alt="Ubuntu CI status">
6363
<img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="Apache 2.0 license">
6464
<img src="https://img.shields.io/badge/C%2B%2B-11-00599C.svg" alt="C++11">
65-
<img src="https://img.shields.io/github/stars/fast-pack/FastPFor?style=flat&color=ffb000" alt="GitHub stars">
65+
<img src="https://img.shields.io/github/stars/fast-pack/FastPFOR?style=flat&color=ffb000" alt="GitHub stars">
6666
</div>
6767
</div>
6868
</section>
@@ -169,7 +169,7 @@ <h2 class="section-title">Compress in a few lines</h2>
169169
<h2 class="section-title">Install &amp; build</h2>
170170
<p class="section-sub">You need a C++11 compiler and CMake. On most systems:</p>
171171
<div class="code-wrap">
172-
<pre><code class="language-bash">git clone https://github.com/fast-pack/FastPFor.git
172+
<pre><code class="language-bash">git clone https://github.com/fast-pack/FastPFOR.git
173173
cd FastPFor
174174
cmake -B build
175175
cmake --build build
@@ -285,9 +285,9 @@ <h2 class="section-title">Papers &amp; references</h2>
285285
</div>
286286
<div class="footer-col">
287287
<h4>Project</h4>
288-
<a href="https://github.com/fast-pack/FastPFor" target="_blank" rel="noopener">GitHub repository</a>
289-
<a href="https://github.com/fast-pack/FastPFor/issues" target="_blank" rel="noopener">Issue tracker</a>
290-
<a href="https://github.com/fast-pack/FastPFor/blob/master/LICENSE" target="_blank" rel="noopener">License</a>
288+
<a href="https://github.com/fast-pack/FastPFOR" target="_blank" rel="noopener">GitHub repository</a>
289+
<a href="https://github.com/fast-pack/FastPFOR/issues" target="_blank" rel="noopener">Issue tracker</a>
290+
<a href="https://github.com/fast-pack/FastPFOR/blob/master/LICENSE" target="_blank" rel="noopener">License</a>
291291
</div>
292292
<div class="footer-col">
293293
<h4>Bindings</h4>

0 commit comments

Comments
 (0)