branch: externals/bug-hunter
commit 7594b295eebc0a32f8c4e7a968f95471390a00b8
Author: Artur Malabarba <[email protected]>
Commit: Artur Malabarba <[email protected]>
Readme
---
README.md | 2 +-
bug-hunter.el | 18 +++++++++---------
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index 1759f30..2656d1a 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-## (Not done yet...) Bug Hunter 
[](https://travis-ci.org/Bruce-Connor/elisp-bug-hunter?branch%3Dmaster)
+##  (Not done yet...) Bug Hunter
[](https://travis-ci.org/Bruce-Connor/elisp-bug-hunter?branch%3Dmaster)
`bug-hunter` is an Emacs library that finds the source of a bug inside any
given `.el` file.
diff --git a/bug-hunter.el b/bug-hunter.el
index 0e8b957..1de4795 100644
--- a/bug-hunter.el
+++ b/bug-hunter.el
@@ -24,34 +24,34 @@
;;; Commentary:
;; `bug-hunter' is an Emacs library that finds the source of a bug inside
;; any given `.el' file.
-;;
-;;
+;;
+;;
;; Usage Examples
;; ==============
-;;
+;;
;; 1. If your Emacs init file signals an error during startup, but you
;; don’t know why, simply issue
;; ,----
;; | M-x bug-hunter-init-file RET RET
;; `----
;; and `bug-hunter' will find it for you.
-;;
+;;
;; 2. If Emacs starts up without errors but something is not working as
;; it should, invoke the same command, but give it in an assertion:
;; ,----
;; | M-x bug-hunter-init-file RET (when issue-detected t) RET
;; `----
-;;
+;;
;; 3. You can also use `bug-hunter-file' to hunt in other files, or even
;; `bug-hunter-hunt' to search in a list of expressions.
-;;
-;;
+;;
+;;
;; Installation
;; ============
-;;
+;;
;; It is part of Emacs and is available trough GNU Elpa. To install,
;; issue
-;;
+;;
;; ,----
;; | M-x package-install RET bug-hunter
;; `----