fix typos

This commit is contained in:
Solene Rapenne 2021-10-27 12:30:08 +02:00
parent ac1794037f
commit 78eb2ad6bf
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<h2>Interview</h2>
<blockquote>
<p>For me, OpenBSD is a great platform to learn how computers work, even if
it's a radically different OS compared to a GNU/Linux distro or Windows.</p>
it's a radically different OS compared to a GNU/Linux distribution or Windows.</p>
<p>When I started to use OpenBSD on an old Dell Optiplex G260, one thing that
impressed me first was the quality of the man pages and the documentation.
This might just be a small detail at first, but if you think about it,

View File

@ -1,8 +1,8 @@
<article id="tips">
<div class="puffies" aria-hidden="true">🐡🐡🐡</div>
<h2>Shell tips</h2>
<h2>Shell tip</h2>
<p>
Display the current month calendar with current day highlited:
Display the current month calendar with current day highlighted:
<pre>now=$(date +%d); cal -m |\
sed "s/ $now /$(printf " \033[1;30;44m$now\033[0m ")/"</pre>