Skip to content

Commit ec2f472

Browse files
committed
Fix Doc and README
1 parent ffb89f8 commit ec2f472

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# FileType.jl
1+
# FileTypes.jl
22

33
Small and dependency free [Julia](https://julialang.org/) package to infer file and MIME type checking the [magic numbers](<https://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files>) signature.
44

5-
[![Build Status](https://travis-ci.org/JuliaIO/FileType.jl.svg?branch=main)](https://travis-ci.org/JuliaIO/FileType.jl)
5+
[![Build Status](https://github.com/JuliaIO/FileTypes.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaIO/FileTypes.jl)
66
[![Coverage](https://codecov.io/gh/JuliaIO/FileType.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaIO/FileType.jl)
77

88
## Features

docs/make.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
using Documenter
2-
using FileType
2+
using FileTypes
33

44
makedocs(
5-
sitename = "FileType",
5+
sitename = "FileTypes",
66
format = Documenter.HTML(),
7-
modules = [FileType]
7+
modules = [FileTypes]
88
)
99

1010
# Documenter can also automatically deploy documentation to gh-pages.
1111
# See "Hosting Documentation" and deploydocs() in the Documenter manual
1212
# for more information.
1313
deploydocs(
14-
repo = "https://github.com/Agent-Hellboy/FileType.jl.git"
14+
repo = "https://github.com/JuliaIO/FileTypes.jl.git"
1515
)

docs/src/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# FileType.jl
22

3-
Documentation for FileType.jl
3+
Documentation for FileTypes.jl
44

55

66
# Documentation
77

88
```@meta
9-
CurrentModule = FileType
9+
CurrentModule = FileTypes
1010
DocTestSetup = quote
11-
using FileType
11+
using FileTypes
1212
end
1313
```
1414

1515
```@autodocs
16-
Modules = [FileType]
16+
Modules = [FileTypes]
1717
```
1818

0 commit comments

Comments
 (0)