Skip to content

Commit

Permalink
Update documentation references
Browse files Browse the repository at this point in the history
Using rustdoc links (see RFC rust-lang/rfcs#1946)
  • Loading branch information
khvzak authored and sdleffler committed Nov 13, 2021
1 parent e99c0e0 commit 2f618a6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ macros = ["hv-lua-derive/macros"]
default = ["luajit", "macros", "hv-ecs", "send", "serialize"]

[dependencies]
hv-lua-derive = { version = "=0.6.0", optional = true, path = "../hv-lua-derive" }
hv-lua-derive = { version = "=0.6.0", optional = true, path = "../hv-dev/hv/crates/hv-lua-derive" }
bstr = { version = "0.2", features = ["std"], default_features = false }
once_cell = { version = "1.0" }
num-traits = { version = "0.2.14" }
Expand All @@ -43,16 +43,16 @@ futures-task = { version = "0.3.5", optional = true }
futures-util = { version = "0.3.5", optional = true }
serde = { version = "1.0", optional = true }
erased-serde = { version = "0.3", optional = true }
hv-ecs = { version = "0.1.0", path = "../hv-ecs", optional = true }
hv-sync = { version = "0.1.0", path = "../hv-sync" }
hv-alchemy = { version = "0.1.0", path = "../hv-alchemy" }
hv-math = { version = "0.1.0", path = "../hv-math" }
hv-ecs = { version = "0.1.0", optional = true }
hv-sync = { version = "0.1.0", path = "../hv-dev/hv/crates/hv-sync" }
hv-alchemy = { version = "0.1.0" }
hv-math = { version = "0.1.0", path = "../hv-dev/hv/crates/hv-math" }
static_assertions = "1.1.0"

# External integrations.
nalgebra = { version = "0.29.0", optional = true }
parry3d = { version = "0.7.1", optional = true }
hv-guarded-borrow = { version = "0.1.1", path = "../hv-guarded-borrow" }
hv-guarded-borrow = { version = "0.1.1" }

[build-dependencies]
cc = { version = "1.0" }
Expand All @@ -71,7 +71,7 @@ tokio = { version = "1.0", features = ["full"] }
futures-timer = "3.0"
serde_json = "1.0"
maplit = "1.0"
hv = { path = "../..", package = "heavy" }
hv = { path = "../hv-dev/hv", package = "heavy" }

[[bench]]
name = "benchmark"
Expand Down
4 changes: 4 additions & 0 deletions src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,11 @@ where
/// This struct is created by the [`Table::sequence_values`] method.
///
/// [`Table::sequence_values`]: crate::Table::sequence_values
<<<<<<< HEAD
pub struct TableSequenceIter<'lua, V> {
=======
pub struct TableSequence<'lua, V> {
>>>>>>> ed48b11 (Update documentation references)
table: LuaRef<'lua>,
index: Option<Integer>,
len: Option<Integer>,
Expand Down

0 comments on commit 2f618a6

Please sign in to comment.