Skip to content

Commit ed484bd

Browse files
committed
nits
1 parent 05304da commit ed484bd

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"GOPROXY",
1818
"goreleaser",
1919
"ldflags",
20+
"NOHOST",
2021
"serv",
2122
"trimpath"
2223
],

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ CertGraph has multiple options for querying SSL certificates. The driver is resp
7070

7171
* **crtsh** this driver searches Certificate Transparency logs via [crt.sh](https://crt.sh/). No packets are sent to any of the domains when using this driver
7272

73-
7473
## Example
7574

7675
```console
@@ -94,25 +93,28 @@ Pre-compiled releases are automatically built and uploaded to the [releases GitH
9493

9594
This project uses GitHub Actions for continuous integration and deployment:
9695

97-
- **Tests and Linting**: Automatically runs tests and linting on every push and pull request
98-
- **Docker Images**: Automatically builds and pushes Docker images to GitHub Container Registry on version tags
99-
- **Releases**: Automatically creates releases with pre-compiled binaries for multiple platforms using GoReleaser
96+
* **Tests and Linting**: Automatically runs tests and linting on every push and pull request
97+
* **Docker Images**: Automatically builds and pushes Docker images to GitHub Container Registry on version tags
98+
* **Releases**: Automatically creates releases with pre-compiled binaries for multiple platforms using GoReleaser
10099

101100
### Docker
102101

103102
CertGraph is available as Docker images on both Docker Hub and GitHub Container Registry:
104103

105104
**Docker Hub:**
105+
106106
```console
107-
$ docker run --rm -it lanrat/certgraph example.com
107+
docker run --rm -it lanrat/certgraph example.com
108108
```
109109

110110
**GitHub Container Registry:**
111+
111112
```console
112-
$ docker run --rm -it ghcr.io/lanrat/certgraph example.com
113+
docker run --rm -it ghcr.io/lanrat/certgraph example.com
113114
```
114115

115116
**Example output:**
117+
116118
```console
117119
example.com
118120
www.example.net

status/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func New(domainStatus DomainStatus) Status {
2424
}
2525
}
2626

27-
// NewMeta returns a new Status with the provied meta
27+
// NewMeta returns a new Status with the proxied meta
2828
func NewMeta(domainStatus DomainStatus, meta string) Status {
2929
s := New(domainStatus)
3030
s.Meta = meta

0 commit comments

Comments
 (0)