Update the single-file repo example

ido-ubiquitous is no longer a single-file repo, so the README needs a
new example.
This commit is contained in:
Ryan C. Thompson 2015-04-08 19:10:02 -07:00
parent cdfd6efd8d
commit a2243b4fd2

View file

@ -267,17 +267,17 @@ causes the default value shown above to be prepended to the specified file list.
### Example: Single File Repository ### Example: Single File Repository
[ido-ubiquitous](https://github.com/DarwinAwardWinner/ido-ubiquitous) is a repository that contains two files: [smex](https://github.com/nonsequitur/smex) is a repository that
contains two files:
* `README.md` * `README.markdown`
* `ido-ubiquitous.el` * `smex.el`
Since there is only one `.el` file, this package only needs the `:url` and `:fetcher` specified, Since there is only one `.el` file, this package only needs the `:url`
and `:fetcher` specified,
```lisp ```lisp
(ido-ubiquitous (smex :repo "nonsequitur/smex" :fetcher github)
:url "https://github.com/DarwinAwardWinner/ido-ubiquitous.git"
:fetcher git)
``` ```
### Example: Multiple Packages in one Repository ### Example: Multiple Packages in one Repository