Skip to content

Commit 7f4d9c0

Browse files
committed
readme docstring and manifest in gitignore
1 parent 63cf972 commit 7f4d9c0

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
*.jl.cov
22
*.jl.*.cov
33
*.jl.mem
4+
Manifest.toml

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ version = "1.6.0"
66
[deps]
77
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
88
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def"
9+
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
910
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
1011
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1112
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"

src/NBodySimulator.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
__precompile__()
2-
2+
"""
3+
$(DocStringExtensions.README)
4+
"""
35
module NBodySimulator
46

7+
using DocStringExtensions
58
using Reexport
69
@reexport using DiffEqBase, OrdinaryDiffEq, RecursiveArrayTools
710
using StaticArrays, RecipesBase, FileIO

0 commit comments

Comments
 (0)