summaryrefslogtreecommitdiffstats
path: root/guide
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-09-21 17:17:56 +0300
committerLars Wirzenius <liw@sequoia-pgp.org>2021-09-30 08:31:00 +0300
commite917221b626b816d79af95eded8154065100cdf1 (patch)
treee813036a3da1260bb9c92a861f0e19df1b0cacad /guide
parent537a63d6acb08c427c3cb2031e1f2c75a77f16d2 (diff)
Expand TAB into spaces
Found by clippy lint tabs_in_doc_comments: https://rust-lang.github.io/rust-clippy/master/index.html#tabs_in_doc_comments
Diffstat (limited to 'guide')
-rw-r--r--guide/src/chapter_02.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guide/src/chapter_02.md b/guide/src/chapter_02.md
index 832cd9b8..493528d7 100644
--- a/guide/src/chapter_02.md
+++ b/guide/src/chapter_02.md
@@ -601,7 +601,7 @@ impl<'a> DecryptionHelper for Helper<'a> {
// XXX: In production code, return the Fingerprint of the
// recipient's Cert here
- Ok(None)
+ Ok(None)
}
}
```