aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-31 14:13:39 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-31 14:13:39 -0800
commit681fca8f43f9cbed97ce2df0b871447953c7edda (patch)
tree416e6b577f89d0bc8f110983b5a10d83afccfede
parentbe60d7065c5a55a06a1e3f301de8f1dbfc7c8eb3 (diff)
downloadcryptography-681fca8f43f9cbed97ce2df0b871447953c7edda.tar.gz
cryptography-681fca8f43f9cbed97ce2df0b871447953c7edda.tar.bz2
cryptography-681fca8f43f9cbed97ce2df0b871447953c7edda.zip
Rearange sentence on recommendation of @jacobian
-rw-r--r--docs/cryptography-docs.py3
-rw-r--r--docs/fernet.rst6
2 files changed, 6 insertions, 3 deletions
diff --git a/docs/cryptography-docs.py b/docs/cryptography-docs.py
index 0252d693..f27a8467 100644
--- a/docs/cryptography-docs.py
+++ b/docs/cryptography-docs.py
@@ -23,6 +23,9 @@ class HazmatDirective(Directive):
if self.content:
message += DANGER_ALTERNATE.format(alternate=self.content[0])
+ import pdb
+ pdb.set_trace()
+
ad = make_admonition(
Hazmat,
self.name,
diff --git a/docs/fernet.rst b/docs/fernet.rst
index 2fe2b860..4e94e212 100644
--- a/docs/fernet.rst
+++ b/docs/fernet.rst
@@ -3,9 +3,9 @@ Fernet (Symmetric encryption)
.. currentmodule:: cryptography.fernet
-`Fernet`_ is an implementation of symmetric (also known as "secret key")
-authenticated cryptography. Fernet provides guarantees that a message encrypted
-using it cannot be manipulated or read without the key.
+Fernet provides guarantees that a message encrypted using it cannot be
+manipulated or read without the key. `Fernet`_ is an implementation of
+symmetric (also known as "secret key") authenticated cryptography.
.. class:: Fernet(key)
181' href='#n181'>181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296