Skip to content

Commit

Permalink
doc tweaks; fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehammond committed Dec 15, 2024
1 parent 6957629 commit 5ea9756
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions app/components/Installation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ source ~/.zshrc
# For tcsh:
source ~/.tcshrc`

const verifyCode = `abc --version
abc hi`
const verifyCode = `abc hi
abc --version`

return (
<section id="installation" className="space-y-8 bg-white rounded-xl shadow-lg p-8 transition-all duration-300 hover:shadow-xl">
<h2 className="text-4xl font-bold text-gray-800 border-b pb-4">Quick Install</h2>

{/* Installation Steps */}
<div className="space-y-4">
<h3 className="text-2xl font-semibold text-gray-700">Install the latest version from GitHub using pipx</h3>
<h3 className="text-2xl font-semibold text-gray-700">Install the latest version of abc from GitHub using pipx</h3>
<div className="relative">
<pre className="bg-gray-800 p-6 rounded-lg overflow-x-auto text-green-400">
<code>{installationCode}</code>
Expand All @@ -44,7 +44,7 @@ abc hi`

{/* Reload your shell configuration */}
<div className="space-y-4">
<h3 className="text-2xl font-semibold text-gray-700">Reload your shell configuration</h3>
<h3 className="text-2xl font-semibold text-gray-700">Reload your shell configuration to enable abc command</h3>
<div className="relative">
<pre className="bg-gray-800 p-6 rounded-lg overflow-x-auto text-green-400">
<code>{afterInstallCode}</code>
Expand All @@ -61,7 +61,7 @@ abc hi`

{/* Verification */}
<div className="space-y-4">
<h3 className="text-2xl font-semibold text-gray-700">Verify Installation</h3>
<h3 className="text-2xl font-semibold text-gray-700">Verify abc Installation</h3>
<div className="relative">
<pre className="bg-gray-800 p-6 rounded-lg overflow-x-auto text-green-400">
<code>{verifyCode}</code>
Expand Down
2 changes: 1 addition & 1 deletion app/components/OpenSource.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function OpenSource() {
<ul className="space-y-4">
<li className="flex items-center space-x-3">
<Sparkles className="w-6 h-6 text-green-500" />
<span className="text-gray-700">Written by Claude 3.5 Sonnet</span>
<span className="text-gray-700">Written by Anthropic Claude 3.5 Sonnet</span>
</li>
<li className="flex items-center space-x-3">
<User className="w-6 h-6 text-green-500" />
Expand Down
2 changes: 1 addition & 1 deletion install-script-header.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
bash -c '
tmp_dir=$(mktemp -d) &&
trap "rm -rf \"$tmp_dir\"" EXIT &&
echo "Downloading the latest abc install script from Eric Hammond\'s Alestic organization on GitHub" &&
echo "Downloading the latest abc install script from the Alestic organization (Eric Hammond) on GitHub" &&
curl -fsSL https://raw.githubusercontent.com/alestic/abc/refs/heads/main/install_from_github.sh \
-o "$tmp_dir/abc_install.sh" &&
chmod +x "$tmp_dir/abc_install.sh" &&
Expand Down

0 comments on commit 5ea9756

Please sign in to comment.